]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Operator/PHP/Matches.php
CS
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Operator / PHP / Matches.php
index 987ed2a50b26127adf95d842d681d6a199bd9643..bc0c3f8f76bed331d0125a1816d8323dd68caf34 100644 (file)
@@ -16,6 +16,6 @@ class Matches
 {
     public function __invoke($subject, $pattern)
     {
-        return stripos($subject, $pattern) !== false;
+        return false !== stripos($subject, $pattern);
     }
 }