1 | <?php declare(strict_types=1); |
||
7 | trait TableRegistryTrait |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | protected $registry = TableRegistry::class; |
||
13 | |||
14 | /** |
||
15 | * @param string $registry |
||
16 | */ |
||
17 | public function setRegistry($registry) |
||
25 | |||
26 | /** |
||
27 | * @return string |
||
28 | */ |
||
29 | public function getTable() |
||
33 | } |
||
34 |