for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Zing\QueryBuilder\Exceptions;
class ParameterException extends Exception
{
public static function tooFewElementsForBetweenExpression()
return new static('Too few elements for between expression, at least 2 elements expected');
}