1 | <?php |
||
9 | abstract class AbstractRepository extends AbstractDoctrineRepository |
||
10 | { |
||
11 | /** |
||
12 | * @param string $id |
||
13 | * @param array $row |
||
14 | */ |
||
15 | protected function insert(string $id, array $row) |
||
21 | |||
22 | /** |
||
23 | * @param string $id |
||
24 | * @param array $row |
||
25 | */ |
||
26 | protected function update(string $id, array $row) |
||
32 | } |
||
33 |