Skip to content

Commit a79d56b

Browse files
committed
fixed missing use statements
1 parent c1541b2 commit a79d56b

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)