| Total Complexity | 7 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Coverage | 61.53% |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class AbstractVisitor implements Visitor, NamespaceVisitor |
||
| 18 | { |
||
| 19 | 340 | public function acceptSchema(Schema $schema) |
|
| 20 | { |
||
| 21 | 340 | } |
|
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | 123 | public function acceptNamespace($namespaceName) |
|
| 28 | 123 | } |
|
| 29 | |||
| 30 | public function acceptTable(Table $table) |
||
| 31 | { |
||
| 32 | } |
||
| 33 | |||
| 34 | 340 | public function acceptColumn(Table $table, Column $column) |
|
| 35 | { |
||
| 36 | 340 | } |
|
| 37 | |||
| 38 | public function acceptForeignKey(Table $localTable, ForeignKeyConstraint $fkConstraint) |
||
| 39 | { |
||
| 40 | } |
||
| 41 | |||
| 42 | 327 | public function acceptIndex(Table $table, Index $index) |
|
| 44 | 327 | } |
|
| 45 | |||
| 46 | public function acceptSequence(Sequence $sequence) |
||
| 48 | } |
||
| 49 | } |
||
| 50 |