1 | <?php |
||
10 | abstract class Table extends FixtureCollection |
||
11 | { |
||
12 | protected static $tableName; |
||
13 | |||
14 | abstract public function addTableToSchema(Schema $schema); |
||
15 | |||
16 | 10 | public static function getTableName(): string |
|
24 | |||
25 | 4 | public function getFixtures(): iterable |
|
31 | |||
32 | 2 | public function getRows(): iterable |
|
36 | |||
37 | 2 | public function getTypes(): array |
|
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | 7 | public function getProcessor(): string |
|
49 | |||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | 7 | public function getName(): string |
|
57 | } |
||
58 |