| 1 | <?php |
||
| 10 | abstract class Table implements TableInterface |
||
| 11 | { |
||
| 12 | protected static $tableName; |
||
| 13 | protected static $order = 50; |
||
| 14 | |||
| 15 | abstract public function addTableToSchema(Schema $schema); |
||
| 16 | |||
| 17 | 3 | public static function getOrder(): int |
|
| 21 | |||
| 22 | 2 | public static function getTableName(): string |
|
| 30 | |||
| 31 | 2 | public function getRows(): array |
|
| 35 | } |
||
| 36 |