1 | <?php |
||
8 | class Table |
||
9 | { |
||
10 | /** |
||
11 | * @var \Zend\Db\TableGateway\TableGateway |
||
12 | */ |
||
13 | protected $tableGateway; |
||
14 | |||
15 | public function __construct(TableGateway $tableGateway) |
||
19 | |||
20 | public function save($version) |
||
25 | |||
26 | public function delete($version) |
||
30 | |||
31 | public function applied($version) |
||
36 | |||
37 | public function getCurrentVersion() |
||
47 | } |
||
48 |