wallabag/src/Operator/PHP/Matches.php
2024-02-23 07:42:48 +01:00

22 lines
496 B
PHP

<?php
namespace Wallabag\Operator\PHP;
/**
* Provides a "matches" operator used for tagging rules.
*
* It asserts that a given pattern is 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;
*/
class Matches
{
public function __invoke($subject, $pattern)
{
return false !== stripos($subject, $pattern);
}
}