File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/DependencyInjection/Compiler Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ Changelog
66
77* ** 2017-11-11** : Removed php 5.6 and 7.0 support, removed Symfony 3.0.* and 3.1.* support
88
9+ 2.0.3
10+ -----
11+
12+ * ** 2018-01-22** : Fixed syntax error in ValidationPass.
13+
9142.0.2
1015-----
1116
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class ValidationPass implements CompilerPassInterface
2121{
2222 public function process (ContainerBuilder $ container )
2323 {
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 ' )) {
2525 $ container
2626 ->getDefinition ('validator.builder ' )
2727 ->addMethodCall ('addXmlMappings ' , [[__DIR__ .'/../../Resources/config/validation-phpcr.xml ' ]]);
You can’t perform that action at this time.
0 commit comments