Total Complexity | 7 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Coverage | 52% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | final class TableGeneratorSchemaVisitor implements Visitor |
||
16 | { |
||
17 | /** @var string */ |
||
18 | private $generatorTableName; |
||
19 | |||
20 | 52 | public function __construct(string $generatorTableName = 'sequences') |
|
23 | 52 | } |
|
24 | |||
25 | 52 | public function acceptSchema(Schema $schema) : void |
|
32 | 52 | } |
|
33 | |||
34 | 52 | public function acceptTable(Table $table) : void |
|
35 | { |
||
36 | 52 | } |
|
37 | |||
38 | 52 | public function acceptColumn(Table $table, Column $column) : void |
|
39 | { |
||
40 | 52 | } |
|
41 | |||
42 | public function acceptForeignKey(Table $localTable, ForeignKeyConstraint $fkConstraint) : void |
||
43 | { |
||
44 | } |
||
45 | |||
46 | public function acceptIndex(Table $table, Index $index) : void |
||
47 | { |
||
48 | } |
||
49 | |||
50 | public function acceptSequence(Sequence $sequence) : void |
||
52 | } |
||
53 | } |
||
54 |