![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/clinic.corals.io/vendor/doctrine/dbal/src/Schema/Visitor/ |
<?php namespace Doctrine\DBAL\Schema\Visitor; use Doctrine\DBAL\Schema\ForeignKeyConstraint; use Doctrine\DBAL\Schema\Sequence; use Doctrine\DBAL\Schema\Table; use Doctrine\DBAL\Schema\TableDiff; /** * Visit a SchemaDiff. */ interface SchemaDiffVisitor { /** * Visit an orphaned foreign key whose table was deleted. * * @return void */ public function visitOrphanedForeignKey(ForeignKeyConstraint $foreignKey); /** * Visit a sequence that has changed. * * @return void */ public function visitChangedSequence(Sequence $sequence); /** * Visit a sequence that has been removed. * * @return void */ public function visitRemovedSequence(Sequence $sequence); /** @return void */ public function visitNewSequence(Sequence $sequence); /** @return void */ public function visitNewTable(Table $table); /** @return void */ public function visitNewTableForeignKey(Table $table, ForeignKeyConstraint $foreignKey); /** @return void */ public function visitRemovedTable(Table $table); /** @return void */ public function visitChangedTable(TableDiff $tableDiff); }