aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Operator/PHP/NotMatches.php
blob: bd4d887a601a475e03704548a11675cc656076cc (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                      
                                                                                  




                                                
                                                     

     
<?php

namespace Wallabag\CoreBundle\Operator\PHP;

/**
 * Provides a "notmatches" operator used for tagging rules.
 *
 * It asserts that a given pattern is not contained in a subject, in a
 * case-insensitive way.
 *
 * This operator will be used to compile tagging rules in PHP, usable
 * directly on Entry objects for instance.
 * It's registered in RulerZ using a service (wallabag.operator.array.notmatches);
 */
class NotMatches
{
    public function __invoke($subject, $pattern)
    {
        return false === stripos($subject, $pattern);
    }
}