1 | <?php |
||
12 | class EzInfoCollectionAttributeRepository extends EntityRepository |
||
13 | { |
||
14 | /** |
||
15 | * Get new EzInfoCollectionAttribute instance. |
||
16 | * |
||
17 | * @return EzInfoCollectionAttribute |
||
18 | */ |
||
19 | public function getInstance() |
||
23 | |||
24 | /** |
||
25 | * Save object. |
||
26 | * |
||
27 | * @param EzInfoCollectionAttribute $infoCollectionAttribute |
||
28 | */ |
||
29 | public function save(EzInfoCollectionAttribute $infoCollectionAttribute) |
||
34 | |||
35 | /** |
||
36 | * @param Location $location |
||
37 | * @param EzInfoCollection $ezInfoCollection |
||
38 | * @param $fieldId |
||
39 | * @param LegacyData $value |
||
40 | * |
||
41 | * @return EzInfoCollectionAttribute |
||
42 | */ |
||
43 | public function createWithValues(Location $location, EzInfoCollection $ezInfoCollection, $fieldId, LegacyData $value) |
||
56 | } |
||
57 |