Total Complexity | 7 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 61.53% |
Changes | 0 |
1 | <?php |
||
17 | class AbstractVisitor implements Visitor, NamespaceVisitor |
||
18 | { |
||
19 | 348 | public function acceptSchema(Schema $schema) : void |
|
21 | 348 | } |
|
22 | |||
23 | 81 | public function acceptNamespace(string $namespaceName) : void |
|
25 | 81 | } |
|
26 | |||
27 | public function acceptTable(Table $table) : void |
||
28 | { |
||
29 | } |
||
30 | |||
31 | 348 | public function acceptColumn(Table $table, Column $column) : void |
|
32 | { |
||
33 | 348 | } |
|
34 | |||
35 | public function acceptForeignKey(Table $localTable, ForeignKeyConstraint $fkConstraint) : void |
||
36 | { |
||
37 | } |
||
38 | |||
39 | 239 | public function acceptIndex(Table $table, Index $index) : void |
|
41 | 239 | } |
|
42 | |||
43 | public function acceptSequence(Sequence $sequence) : void |
||
45 | } |
||
46 | } |
||
47 |