for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Doctrine\Migrations\Configuration\Connection\Exception;
use InvalidArgumentException;
final class ConnectionNotSpecified extends InvalidArgumentException implements LoaderException
{
public static function new() : self
return new self(
'You have to specify a --db-configuration file or pass a Database Connection as a dependency to the Migrations.'
);
}