wallabag/src/Wallabag/CoreBundle/Operator/PHP/Matches.php
2015-11-13 14:37:58 +01:00

12 lines
185 B
PHP

<?php
namespace Wallabag\CoreBundle\Operator\PHP;
class Matches
{
public function __invoke($subject, $pattern)
{
return stripos($subject, $pattern) !== false;
}
}