/
home
/
obinna
/
html
/
boaz2
/
vendor
/
doctrine
/
migrations
/
lib
/
Doctrine
/
Migrations
/
Tools
/
Console
/
Exception
/
Upload File
HOME
<?php declare(strict_types=1); namespace Doctrine\Migrations\Tools\Console\Exception; use InvalidArgumentException; use function sprintf; final class DirectoryDoesNotExist extends InvalidArgumentException implements ConsoleException { public static function new(string $directory): self { return new self(sprintf('Migrations directory "%s" does not exist.', $directory)); } }