Skip to content

Instantly share code, notes, and snippets.

@pboethig
Created July 17, 2016 06:46
Show Gist options
  • Save pboethig/4d372a9405b9dffe62fba98ed54755a5 to your computer and use it in GitHub Desktop.
Save pboethig/4d372a9405b9dffe62fba98ed54755a5 to your computer and use it in GitHub Desktop.
<?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