Use FQCN as service name for Rulerz operators

This commit is contained in:
Yassine Guedidi
2022-04-24 18:26:14 +02:00
parent a5f22ff835
commit 538fd258fe
6 changed files with 10 additions and 10 deletions

View File

@ -10,7 +10,7 @@ namespace Wallabag\CoreBundle\Operator\Doctrine;
*
* This operator will be used to compile tagging rules in DQL, usable
* by Doctrine ORM.
* It's registered in RulerZ using a service (wallabag.operator.doctrine.matches);
* It's registered in RulerZ using a service;
*/
class Matches
{

View File

@ -10,7 +10,7 @@ namespace Wallabag\CoreBundle\Operator\Doctrine;
*
* This operator will be used to compile tagging rules in DQL, usable
* by Doctrine ORM.
* It's registered in RulerZ using a service (wallabag.operator.doctrine.notmatches);
* It's registered in RulerZ using a service;
*/
class NotMatches
{

View File

@ -10,7 +10,7 @@ namespace Wallabag\CoreBundle\Operator\PHP;
*
* 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.matches);
* It's registered in RulerZ using a service;
*/
class Matches
{

View File

@ -10,7 +10,7 @@ namespace Wallabag\CoreBundle\Operator\PHP;
*
* 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);
* It's registered in RulerZ using a service;
*/
class NotMatches
{

View File

@ -10,7 +10,7 @@ namespace Wallabag\CoreBundle\Operator\PHP;
*
* This operator will be used to compile ignore origin rules in PHP, usable
* directly on Entry objects for instance.
* It's registered in RulerZ using a service (wallabag.operator.array.pattern_matches);
* It's registered in RulerZ using a service;
*/
class PatternMatches
{