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