Total Complexity | 8 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 53.33% |
Changes | 0 |
1 | <?php |
||
16 | class AbstractVisitor implements Visitor, NamespaceVisitor, ViewVisitor |
||
17 | { |
||
18 | 238 | public function acceptSchema(Schema $schema) |
|
19 | { |
||
20 | 238 | } |
|
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | 57 | public function acceptNamespace($namespaceName) |
|
27 | 57 | } |
|
28 | |||
29 | public function acceptTable(Table $table) |
||
30 | { |
||
31 | } |
||
32 | |||
33 | 238 | public function acceptColumn(Table $table, Column $column) |
|
34 | { |
||
35 | 238 | } |
|
36 | |||
37 | public function acceptForeignKey(Table $localTable, ForeignKeyConstraint $fkConstraint) |
||
38 | { |
||
39 | } |
||
40 | |||
41 | 165 | public function acceptIndex(Table $table, Index $index) |
|
43 | 165 | } |
|
44 | |||
45 | public function acceptSequence(Sequence $sequence) |
||
47 | } |
||
48 | |||
49 | public function acceptView(View $view) |
||
51 | } |
||
52 | } |
||
53 |