File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ Tagged Cache Invalidation
5
5
* [ Configuration] ( #configuration )
6
6
* [ Tagging with the Cache Manager] ( #tagging-with-the-cache-manager )
7
7
* [ Tagging with Annotations] ( #tagging-with-annotations )
8
+ * [ Expressions] ( #expressions )
9
+ * [ Invalidate Tags] ( #invalidate-tags )
8
10
9
11
Introduction
10
12
------------
@@ -88,17 +90,17 @@ If you prefer, you can combine your tags in one annotation:
88
90
*/
89
91
```
90
92
91
- You can also use [ expressions] ( http://symfony.com/doc/current/components/expression_language/index.html )
92
- in tags.
93
+ ### Expressions
93
94
94
- ** Note:** expressions have a dependency on the Symfony’s ExpressionLanguage
95
+ You can also use [ expressions] ( http://symfony.com/doc/current/components/expression_language/index.html )
96
+ in tags. Expressions have a dependency on the Symfony’s ExpressionLanguage
95
97
component, so make sure to include that in your project:
96
98
97
99
``` bash
98
100
$ composer require symfony/expression-language
99
101
```
100
102
101
- This will set tag ` post-123 ` on the response:
103
+ The annotation below will set tag ` post-123 ` on the response:
102
104
103
105
``` php
104
106
/**
You can’t perform that action at this time.
0 commit comments