10 lines
133 B
PHP
10 lines
133 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Doctrine\Migrations\Exception;
|
|
|
|
interface ControlException extends MigrationException
|
|
{
|
|
}
|