1 | <?php |
||
8 | class EntityManager implements ManagerInterface |
||
9 | { |
||
10 | /** |
||
11 | * @var array |
||
12 | */ |
||
13 | private $arrayService = []; |
||
14 | |||
15 | /** |
||
16 | * @return mixed |
||
17 | */ |
||
18 | public function insert(Entity $object) |
||
28 | |||
29 | public function update(Entity $object) |
||
39 | |||
40 | |||
41 | public function delete(Entity $object) |
||
51 | |||
52 | /** |
||
53 | * @param Entity $object |
||
54 | * |
||
55 | * @return bool|ManagerInterface |
||
56 | */ |
||
57 | public function getSupport(Entity $object) |
||
67 | |||
68 | /** |
||
69 | * @param ManagerInterface $service |
||
70 | * |
||
71 | * @return $this |
||
72 | */ |
||
73 | public function addService(ManagerInterface $service) |
||
79 | |||
80 | /** |
||
81 | * @return array |
||
82 | */ |
||
83 | public function getServices() |
||
87 | |||
88 | /** |
||
89 | * @param Entity $object |
||
90 | * |
||
91 | * @return bool|AbstractManager |
||
92 | */ |
||
93 | public function getManager(Entity $object) |
||
99 | |||
100 | /** |
||
101 | * @param Entity $object |
||
102 | * |
||
103 | * @return bool|EntityRepository |
||
104 | */ |
||
105 | public function getRepository(Entity $object){ |
||
111 | } |
||
112 |