Файл: vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/Visitor/AbstractVisitor.php
Строк: 49
<?php
namespace DoctrineDBALSchemaVisitor;
use DoctrineDBALSchemaColumn;
use DoctrineDBALSchemaForeignKeyConstraint;
use DoctrineDBALSchemaIndex;
use DoctrineDBALSchemaSchema;
use DoctrineDBALSchemaSequence;
use DoctrineDBALSchemaTable;
/**
* Abstract Visitor with empty methods for easy extension.
*/
class AbstractVisitor implements Visitor, NamespaceVisitor
{
public function acceptSchema(Schema $schema)
{
}
/**
* {@inheritdoc}
*/
public function acceptNamespace($namespaceName)
{
}
public function acceptTable(Table $table)
{
}
public function acceptColumn(Table $table, Column $column)
{
}
public function acceptForeignKey(Table $localTable, ForeignKeyConstraint $fkConstraint)
{
}
public function acceptIndex(Table $table, Index $index)
{
}
public function acceptSequence(Sequence $sequence)
{
}
}