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 UNACCENT.
*
* @see http://www.postgresql.org/docs/current/static/unaccent.html
* @author Martin Hasoň <[email protected]>
*/
class Unaccent extends BaseVariadicFunction
{
protected $commonNodeMapping = 'StringPrimary';
protected function customiseFunction(): void
$this->setFunctionPrototype('unaccent(%s)');
}