File tree 2 files changed +6
-1
lines changed
src/DependencyInjection/Compiler
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ Changelog
6
6
7
7
* ** 2017-11-11** : Removed php 5.6 and 7.0 support, removed Symfony 3.0.* and 3.1.* support
8
8
9
+ 2.0.3
10
+ -----
11
+
12
+ * ** 2018-01-22** : Fixed syntax error in ValidationPass.
13
+
9
14
2.0.2
10
15
-----
11
16
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class ValidationPass implements CompilerPassInterface
21
21
{
22
22
public function process (ContainerBuilder $ container )
23
23
{
24
- if ($ container ->hasParameter ('cmf_routing.backend_type_phpcr ' && $ container ->hasDefinition ('validator.builder ' ) )) {
24
+ if ($ container ->hasParameter ('cmf_routing.backend_type_phpcr ' ) && $ container ->hasDefinition ('validator.builder ' )) {
25
25
$ container
26
26
->getDefinition ('validator.builder ' )
27
27
->addMethodCall ('addXmlMappings ' , [[__DIR__ .'/../../Resources/config/validation-phpcr.xml ' ]]);
You can’t perform that action at this time.
0 commit comments