<?php
declare(strict_types=1);
namespace DoctrineDBALDriverMysqliException;
use DoctrineDBALDriverAbstractException;
/** @internal */
final class HostRequired extends AbstractException
{
public static function forPersistentConnection(): self
{
return new self('The "host" parameter is required for a persistent connection');
}
}