/
var
/
www
/
html
/
amply
/
vendor
/
doctrine
/
dbal
/
lib
/
Doctrine
/
DBAL
/
Driver
/
AbstractSQLServerDriver
/
Exception
/
Upload File
HOME
<?php declare(strict_types=1); namespace Doctrine\DBAL\Driver\AbstractSQLServerDriver\Exception; use Doctrine\DBAL\Driver\AbstractDriverException; /** * @internal * * @psalm-immutable */ final class PortWithoutHost extends AbstractDriverException { public static function new(): self { return new self('Connection port specified without the host'); } }