for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace MartinGeorgiev\Doctrine\ORM\Query\AST\Functions;
/**
* Implementation of PostgreSQL GREATEST().
*
* @see https://www.postgresql.org/docs/9.4/static/functions-conditional.html#FUNCTIONS-GREATEST-LEAST
* @since 0.7
* @author Martin Georgiev <[email protected]>
*/
class Greatest extends BaseComparisonFunction
{
protected function getFunctionName(): string
return 'greatest';
}