1 | <?php |
||
24 | final class NoDriverManager implements ManagerInterface |
||
25 | { |
||
26 | public function getClass() |
||
30 | |||
31 | public function findAll() |
||
35 | |||
36 | /** |
||
37 | * @param int|null $limit |
||
38 | * @param int|null $offset |
||
39 | */ |
||
40 | public function findBy(array $criteria, ?array $orderBy = null, $limit = null, $offset = null) |
||
44 | |||
45 | public function findOneBy(array $criteria, ?array $orderBy = null) |
||
49 | |||
50 | /** |
||
51 | * @param mixed $id |
||
52 | */ |
||
53 | public function find($id) |
||
57 | |||
58 | public function create() |
||
62 | |||
63 | /** |
||
64 | * @param object $entity |
||
65 | * @param bool $andFlush |
||
66 | */ |
||
67 | public function save($entity, $andFlush = true) |
||
71 | |||
72 | /** |
||
73 | * @param object $entity |
||
74 | * @param bool $andFlush |
||
75 | */ |
||
76 | public function delete($entity, $andFlush = true) |
||
80 | |||
81 | public function getTableName() |
||
85 | |||
86 | public function getConnection() |
||
90 | } |
||
91 |