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 ILIKE().
*
* @see https://www.postgresql.org/docs/9.3/functions-matching.html
* @since 1.1
* @author llaakkkk <[email protected]>
*/
class Ilike extends BaseFunction
{
protected function customiseFunction(): void
$this->setFunctionPrototype('%s ilike %s');
$this->addNodeMapping('StringPrimary');
}