init
This commit is contained in:
23
backend/vendor/doctrine/migrations/src/Exception/UnknownMigrationVersion.php
vendored
Normal file
23
backend/vendor/doctrine/migrations/src/Exception/UnknownMigrationVersion.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Doctrine\Migrations\Exception;
|
||||
|
||||
use RuntimeException;
|
||||
|
||||
use function sprintf;
|
||||
|
||||
final class UnknownMigrationVersion extends RuntimeException implements MigrationException
|
||||
{
|
||||
public static function new(string $version): self
|
||||
{
|
||||
return new self(
|
||||
sprintf(
|
||||
'Could not find migration version %s',
|
||||
$version,
|
||||
),
|
||||
5,
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user