aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/config/services.yml
diff options
context:
space:
mode:
authorKévin Gomez <contact@kevingomez.fr>2015-11-13 14:37:58 +0100
committerKévin Gomez <contact@kevingomez.fr>2015-11-13 14:37:58 +0100
commita6e27f74663637ecc4a4cf84028e6b5a3556a6ff (patch)
tree98e0ef2d9d2d11283a08ec0dc0af0f7c6c2e4887 /src/Wallabag/CoreBundle/Resources/config/services.yml
parent5c514b0be320d683c22a3044d875a5e4b5fe6ce0 (diff)
downloadwallabag-a6e27f74663637ecc4a4cf84028e6b5a3556a6ff.tar.gz
wallabag-a6e27f74663637ecc4a4cf84028e6b5a3556a6ff.tar.zst
wallabag-a6e27f74663637ecc4a4cf84028e6b5a3556a6ff.zip
Add matches operator
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/config/services.yml')
-rw-r--r--src/Wallabag/CoreBundle/Resources/config/services.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/config/services.yml b/src/Wallabag/CoreBundle/Resources/config/services.yml
index 03d33560..c92b4eb3 100644
--- a/src/Wallabag/CoreBundle/Resources/config/services.yml
+++ b/src/Wallabag/CoreBundle/Resources/config/services.yml
@@ -91,3 +91,13 @@ services:
91 arguments: 91 arguments:
92 - %wallabag_url% 92 - %wallabag_url%
93 - src/Wallabag/CoreBundle/Resources/views/themes/_global/public/img/appicon/apple-touch-icon-152.png 93 - src/Wallabag/CoreBundle/Resources/views/themes/_global/public/img/appicon/apple-touch-icon-152.png
94
95 wallabag.operator.array.matches:
96 class: Wallabag\CoreBundle\Operator\PHP\Matches
97 tags:
98 - { name: rulerz.operator, executor: rulerz.executor.array, operator: matches }
99
100 wallabag.operator.doctrine.matches:
101 class: Wallabag\CoreBundle\Operator\Doctrine\Matches
102 tags:
103 - { name: rulerz.operator, executor: rulerz.executor.doctrine, operator: matches, inline: true }