12 lines
191 B
PHP
12 lines
191 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Doctrine\Migrations\Exception;
|
|
|
|
use RuntimeException;
|
|
|
|
final class IrreversibleMigration extends RuntimeException implements MigrationException
|
|
{
|
|
}
|