1 | <?php |
||
16 | abstract class ManagerAbstract extends CommonAbstract implements ManagerInterface |
||
17 | { |
||
18 | protected function fetchDefaultParameters() |
||
26 | |||
27 | /** |
||
28 | * @return Gpupo\Common\Entity\CollectionAbstract|null |
||
29 | */ |
||
30 | protected function fetchPrepare($data) |
||
36 | |||
37 | protected function factoryEntityCollection($data) |
||
41 | |||
42 | /** |
||
43 | * @return Gpupo\Common\Entity\CollectionAbstract|null |
||
44 | */ |
||
45 | public function findById($itemId) |
||
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | public function update(EntityInterface $entity, EntityInterface $existent) |
||
66 | } |
||
67 |