8000 minor #25009 [SecurityBundle] Fix syntax error in test (chalasr) · dunglas/symfony@c247717 · GitHub
[go: up one dir, main page]

Skip to content

Commit c247717

Browse files
committed
minor symfony#25009 [SecurityBundle] Fix syntax error in test (chalasr)
This PR was merged into the 2.7 branch. Discussion ---------- [SecurityBundle] Fix syntax error in test | Q | A | ------------- | --- | Branch? | 2.7 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes- | Fixed tickets | n/a | License | MIT | Doc PR | n/a Should make appveyor green. Commits ------- 20f9b75 [SecurityBundle] Fix syntax error in test
2 parents 11d79cb + 20f9b75 commit c247717

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Symfony/Bundle/SecurityBundle/Tests/DependencyInjection/Compiler/AddSessionDomainConstraintPassTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,8 @@ private function createContainer($sessionStorageOptions)
124124
$ext = new SecurityExtension();
125125
$ext->load($config, $container);
126126

127-
(new AddSessionDomainConstraintPass())->process($container);
127+
$pass = new AddSessionDomainConstraintPass();
128+
$pass->process($container);
128129

129130
return $container;
130131
}

0 commit comments

Comments
 (0)
0