Skip to content

Commit 40cc44a

Browse files
committed
[FrameworkBundle][TwigBundle] Require PSR-11 container instead of Symfony container
1 parent e9a61a0 commit 40cc44a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Templating/DelegatingEngine.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
namespace Symfony\Bundle\FrameworkBundle\Templating;
1313

14+
use Psr\Container\ContainerInterface;
1415
use Symfony\Component\Templating\DelegatingEngine as BaseDelegatingEngine;
15-
use Symfony\Component\DependencyInjection\ContainerInterface;
1616
use Symfony\Component\HttpFoundation\Response;
1717

1818
/**

Templating/PhpEngine.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111

1212
namespace Symfony\Bundle\FrameworkBundle\Templating;
1313

14+
use Psr\Container\ContainerInterface;
1415
use Symfony\Component\Templating\PhpEngine as BasePhpEngine;
1516
use Symfony\Component\Templating\Loader\LoaderInterface;
1617
use Symfony\Component\Templating\TemplateNameParserInterface;
17-
use Symfony\Component\DependencyInjection\ContainerInterface;
1818
use Symfony\Component\HttpFoundation\Response;
1919

2020
/**

Templating/TimedPhpEngine.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111

1212
namespace Symfony\Bundle\FrameworkBundle\Templating;
1313

14+
use Psr\Container\ContainerInterface;
1415
use Symfony\Component\Templating\TemplateNameParserInterface;
1516
use Symfony\Component\Stopwatch\Stopwatch;
1617
use Symfony\Component\Templating\Loader\LoaderInterface;
17-
use Symfony\Component\DependencyInjection\ContainerInterface;
1818

1919
/**
2020
* Times the time spent to render a template.

0 commit comments

Comments
 (0)