Total Complexity | 7 |
Total Lines | 57 |
Duplicated Lines | 0 % |
Coverage | 72.21% |
Changes | 0 |
1 | <?php |
||
13 | class TableGeneratorSchemaVisitor implements Visitor |
||
14 | { |
||
15 | /** @var string */ |
||
16 | private $generatorTableName; |
||
17 | |||
18 | /** |
||
19 | * @param string $generatorTableName |
||
20 | */ |
||
21 | 58 | public function __construct($generatorTableName = 'sequences') |
|
22 | { |
||
23 | 58 | $this->generatorTableName = $generatorTableName; |
|
24 | 58 | } |
|
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | 58 | public function acceptSchema(Schema $schema) |
|
35 | 58 | } |
|
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | 58 | public function acceptTable(Table $table) |
|
41 | { |
||
42 | 58 | } |
|
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | 58 | public function acceptColumn(Table $table, Column $column) |
|
48 | { |
||
49 | 58 | } |
|
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | public function acceptForeignKey(Table $localTable, ForeignKeyConstraint $fkConstraint) |
||
55 | { |
||
56 | } |
||
57 | |||
58 | /** |
||
59 | * {@inheritdoc} |
||
60 | */ |
||
61 | public function acceptIndex(Table $table, Index $index) |
||
62 | { |
||
63 | } |
||
64 | |||
65 | /** |
||
66 | * {@inheritdoc} |
||
67 | */ |
||
68 | public function acceptSequence(Sequence $sequence) |
||
70 | } |
||
71 | } |
||
72 |