gl-website-deployer/vendor/doctrine/dbal/src/Exception/MalformedDsnException.php
2025-02-11 21:30:02 +01:00

13 lines
252 B
PHP

<?php
namespace Doctrine\DBAL\Exception;
use InvalidArgumentException;
class MalformedDsnException extends InvalidArgumentException
{
public static function new(): self
{
return new self('Malformed database connection URL');
}
}