]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Operator/Doctrine/Matches.php
Add matches operator
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Operator / Doctrine / Matches.php
CommitLineData
a6e27f74
KG
1<?php
2
3namespace Wallabag\CoreBundle\Operator\Doctrine;
4
5class Matches
6{
7 public function __invoke($subject, $pattern)
8 {
9 if ($pattern[0] === "'") {
10 $pattern = sprintf("'%%%s%%'", substr($pattern, 1, -1));
11 }
12
13 return sprintf('UPPER(%s) LIKE UPPER(%s)', $subject, $pattern);
14 }
15}