10 lines
180 B
PHP
10 lines
180 B
PHP
<?php
|
|
|
|
namespace Doctrine\Migrations;
|
|
|
|
use Doctrine\DBAL\Migrations\AbstractMigration as BaseAbstractMigration;
|
|
|
|
abstract class AbstractMigration extends BaseAbstractMigration
|
|
{
|
|
}
|