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
Visitor.php
20 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\SchemaException; |
| 9 | use MailPoetVendor\Doctrine\DBAL\Schema\Sequence; |
| 10 | use MailPoetVendor\Doctrine\DBAL\Schema\Table; |
| 11 | interface Visitor |
| 12 | { |
| 13 | public function acceptSchema(Schema $schema); |
| 14 | public function acceptTable(Table $table); |
| 15 | public function acceptColumn(Table $table, Column $column); |
| 16 | public function acceptForeignKey(Table $localTable, ForeignKeyConstraint $fkConstraint); |
| 17 | public function acceptIndex(Table $table, Index $index); |
| 18 | public function acceptSequence(Sequence $sequence); |
| 19 | } |
| 20 |