| 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 | 50 | public function __construct($generatorTableName = 'sequences') |
|
| 22 | { |
||
| 23 | 50 | $this->generatorTableName = $generatorTableName; |
|
| 24 | 50 | } |
|
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | 50 | public function acceptSchema(Schema $schema) |
|
| 35 | 50 | } |
|
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | 50 | public function acceptTable(Table $table) |
|
| 41 | { |
||
| 42 | 50 | } |
|
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | */ |
||
| 47 | 50 | public function acceptColumn(Table $table, Column $column) |
|
| 48 | { |
||
| 49 | 50 | } |
|
| 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 |