for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Driver\Exception;
use Doctrine\DBAL\DBALException;
use function sprintf;
final class UnknownParamType extends DBALException
{
public static function new(int $type) : self
return new self(sprintf('Unknown param type %d.', $type));
}