for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Exception;
use Doctrine\DBAL\SQLParserUtilsException;
use function sprintf;
final class MissingArrayParameterType extends SQLParserUtilsException
{
public static function new(string $paramName) : self
return new self(sprintf('Type of array parameter "%s" is missing.', $paramName));
}