Файл vendor/doctrine/dbal/src/Driver/Mysqli/Exception/HostRequired.php Вес запакованого файла 231b (231 b) Вес распакованого файла: 360b (360 b) Метод сжатия: 8
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Driver\Mysqli\Exception;
use Doctrine\DBAL\Driver\AbstractException;
/** @internal */
final class HostRequired extends AbstractException
{
public static function forPersistentConnection(): self
{
return new self('The "host" parameter is required for a persistent connection');
}
}