Skip to content

Commit 5a05606

Browse files
committed
bug #9910 fixed missing use statements (fabpot)
This PR was merged into the 2.4 branch. Discussion ---------- fixed missing use statements | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | n/a | License | MIT | Doc PR | n/a Commits ------- 50a6d70 fixed missing use statements
2 parents b1d2cf2 + a79d56b commit 5a05606

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DependencyInjection/SecurityExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ private function getExpressionLanguage()
682682
{
683683
if (null === $this->expressionLanguage) {
684684
if (!class_exists('Symfony\Component\ExpressionLanguage\ExpressionLanguage')) {
685-
throw new RuntimeException('Unable to use expressions as the Symfony ExpressionLanguage component is not installed.');
685+
throw new \RuntimeException('Unable to use expressions as the Symfony ExpressionLanguage component is not installed.');
686686
}
687687
$this->expressionLanguage = new ExpressionLanguage();
688688
}

0 commit comments

Comments
 (0)