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