1 | <?php |
||
9 | class DBALRepository implements LoggerAwareInterface{ |
||
10 | use LoggerAwareTrait; |
||
11 | /** |
||
12 | * @var Connection |
||
13 | */ |
||
14 | protected $connection; |
||
15 | private $added = []; |
||
16 | private $modified = []; |
||
17 | private $deleted = []; |
||
18 | 33 | public function __construct(Connection $connection){ |
|
45 | /** |
||
46 | * @return array |
||
47 | */ |
||
48 | 9 | protected function getAdded() |
|
52 | |||
53 | /** |
||
54 | * @return array |
||
55 | */ |
||
56 | 9 | protected function getModified() |
|
60 | |||
61 | /** |
||
62 | * @return array |
||
63 | */ |
||
64 | 9 | protected function getDeleted() |
|
68 | |||
69 | } |