1 | <?php |
||
11 | abstract class Table extends Fixture implements TableInterface |
||
12 | { |
||
13 | protected static $tableName; |
||
14 | |||
15 | abstract public function addTableToSchema(Schema $schema); |
||
16 | |||
17 | 10 | public static function getTableName(): string |
|
25 | |||
26 | 2 | public function getRows(): iterable |
|
30 | |||
31 | 2 | public function getTypes(): array |
|
35 | |||
36 | 7 | public function getProcessor(): string |
|
40 | |||
41 | 7 | public function getName(): string |
|
45 | } |
||
46 |