| 1 | <?php |
||
| 11 | class EzInfoCollectionRepository extends EntityRepository |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Get new EzInfoCollection instance. |
||
| 15 | * |
||
| 16 | * @return EzInfoCollection |
||
| 17 | */ |
||
| 18 | public function getInstance() |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Save object. |
||
| 25 | * |
||
| 26 | * @param EzInfoCollection $informationCollection |
||
| 27 | */ |
||
| 28 | public function save(EzInfoCollection $informationCollection) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param Location $location |
||
| 36 | * @param User $user |
||
| 37 | * |
||
| 38 | * @return EzInfoCollection |
||
| 39 | */ |
||
| 40 | public function createWithValues(Location $location, User $user) |
||
| 53 | } |
||
| 54 |