Update website
This commit is contained in:
parent
4413528994
commit
1d90fbf296
6865 changed files with 1091082 additions and 0 deletions
14
vendor/doctrine/dbal/src/Exception/MalformedDsnException.php
vendored
Normal file
14
vendor/doctrine/dbal/src/Exception/MalformedDsnException.php
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
namespace Doctrine\DBAL\Exception;
|
||||
|
||||
use InvalidArgumentException;
|
||||
|
||||
/** @psalm-immutable */
|
||||
class MalformedDsnException extends InvalidArgumentException
|
||||
{
|
||||
public static function new(): self
|
||||
{
|
||||
return new self('Malformed database connection URL');
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue