Skip to content

Commit 149bd39

Browse files
committed
Merge remote-tracking branch 'origin/2.0'
2 parents bbcd149 + ebc63f9 commit 149bd39

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff 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+
914
2.0.2
1015
-----
1116

src/DependencyInjection/Compiler/ValidationPass.php

+1-1
Original file line numberDiff line numberDiff 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']]);

0 commit comments

Comments
 (0)