AbstractVisitor.php
2 years ago
CreateSchemaSqlCollector.php
2 years ago
DropSchemaSqlCollector.php
9 months ago
Graphviz.php
2 years ago
NamespaceVisitor.php
2 years ago
RemoveNamespacedAssets.php
2 years ago
Visitor.php
2 years ago
index.php
2 years ago
AbstractVisitor.php
34 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Doctrine\DBAL\Schema\Visitor; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Doctrine\DBAL\Schema\Column; |
| 5 | use MailPoetVendor\Doctrine\DBAL\Schema\ForeignKeyConstraint; |
| 6 | use MailPoetVendor\Doctrine\DBAL\Schema\Index; |
| 7 | use MailPoetVendor\Doctrine\DBAL\Schema\Schema; |
| 8 | use MailPoetVendor\Doctrine\DBAL\Schema\Sequence; |
| 9 | use MailPoetVendor\Doctrine\DBAL\Schema\Table; |
| 10 | class AbstractVisitor implements Visitor, NamespaceVisitor |
| 11 | { |
| 12 | public function acceptSchema(Schema $schema) |
| 13 | { |
| 14 | } |
| 15 | public function acceptNamespace($namespaceName) |
| 16 | { |
| 17 | } |
| 18 | public function acceptTable(Table $table) |
| 19 | { |
| 20 | } |
| 21 | public function acceptColumn(Table $table, Column $column) |
| 22 | { |
| 23 | } |
| 24 | public function acceptForeignKey(Table $localTable, ForeignKeyConstraint $fkConstraint) |
| 25 | { |
| 26 | } |
| 27 | public function acceptIndex(Table $table, Index $index) |
| 28 | { |
| 29 | } |
| 30 | public function acceptSequence(Sequence $sequence) |
| 31 | { |
| 32 | } |
| 33 | } |
| 34 |