Created
July 17, 2016 06:46
-
-
Save pboethig/4d372a9405b9dffe62fba98ed54755a5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Created by PhpStorm. | |
* User: root | |
* Date: 17.07.16 | |
* Time: 07:57 | |
*/ | |
namespace Check\BlogBundle\Repositories; | |
use Check\BlogBundle\Entity\IEntity; | |
interface IEntityRepository { | |
/** | |
* @param IEntity $entity | |
* @return mixed | |
*/ | |
public function getProperties(IEntity $entity) | |
public function save(IEntity $entity, $data = array()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment