8000 bug #9910 fixed missing use statements (fabpot) · symfony/symfony@920c681 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 920c681

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 bee8a99 + 50a6d70 commit 920c681

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/Symfony/Bundle/FrameworkBundle/Templating/TemplateFilenameParser.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
namespace Symfony\Bundle\FrameworkBundle\Templating;
1313

1414
use Symfony\Component\Templating\TemplateNameParserInterface;
15+
use Symfony\Component\Templating\TemplateReferenceInterface;
1516

1617
/**
1718
* TemplateFilenameParser converts template filenames to

src/Symfony/Bundle/SecurityBundle/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
}

src/Symfony/Component/Routing/Matcher/Dumper/PhpMatcherDumper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ private function getExpressionLanguage()
392392
{
393393
if (null === $this->expressionLanguage) {
394394
if (!class_exists('Symfony\Component\ExpressionLanguage\ExpressionLanguage')) {
395-
throw new RuntimeException('Unable to use expressions as the Symfony ExpressionLanguage component is not installed.');
395+
throw new \RuntimeException('Unable to use expressions as the Symfony ExpressionLanguage component is not installed.');
396396
}
397397
$this->expressionLanguage = new ExpressionLanguage();
398398
}

0 commit comments

Comments
 (0)
0