File "UnknownParameter.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/doctrine/dbal/src/Driver/PgSQL/Exception/UnknownParameter.php
File size: 388 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Doctrine\DBAL\Driver\PgSQL\Exception;
use Doctrine\DBAL\Driver\AbstractException;
use function sprintf;
/** @psalm-immutable */
final class UnknownParameter extends AbstractException
{
public static function new(string $param): self
{
return new self(
sprintf('Could not find parameter %s in the SQL statement', $param),
);
}
}