Your IP : 216.73.217.79


Current Path : /var/www/v3.cesa.co.za/vendor/doctrine/dbal/src/Driver/PgSQL/Exception/
Upload File :
Current File : /var/www/v3.cesa.co.za/vendor/doctrine/dbal/src/Driver/PgSQL/Exception/UnknownParameter.php

<?php

namespace Doctrine\DBAL\Driver\PgSQL\Exception;

use Doctrine\DBAL\Driver\AbstractException;

use function sprintf;

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),
        );
    }
}