for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bedd\Doctrine\Dbal;
/**
* QueryBuilderException
*/
class QueryBuilderException extends \Exception
{
* Exception if the ORDER BY direction does not exist
*
* @param string $direction
* @return self
public static function orderByDirectionDoesNotExist($direction)
return new self('The ORDER BY direction "'.$direction.'" does not exist.');
}
* @param string $expr_type
public static function expressionTypeDoesNotExist($expr_type)
return new self('The Expression-Type "'.$expr_type.'" does not exist.');