[FrameworkBundle][TwigBundle] Require PSR-11 container instead of Symfony container

This commit is contained in:
Jáchym Toušek 2017-03-14 22:27:21 +01:00
parent 40d133c29a
commit 857ce7c7be
No known key found for this signature in database
GPG Key ID: FA4741CD4AE11934
4 changed files with 4 additions and 4 deletions

View File

@ -11,8 +11,8 @@
namespace Symfony\Bundle\FrameworkBundle\Templating;
use Psr\Container\ContainerInterface;
use Symfony\Component\Templating\DelegatingEngine as BaseDelegatingEngine;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\Response;
/**

View File

@ -11,10 +11,10 @@
namespace Symfony\Bundle\FrameworkBundle\Templating;
use Psr\Container\ContainerInterface;
use Symfony\Component\Templating\PhpEngine as BasePhpEngine;
use Symfony\Component\Templating\Loader\LoaderInterface;
use Symfony\Component\Templating\TemplateNameParserInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\Response;
/**

View File

@ -11,10 +11,10 @@
namespace Symfony\Bundle\FrameworkBundle\Templating;
use Psr\Container\ContainerInterface;
use Symfony\Component\Templating\TemplateNameParserInterface;
use Symfony\Component\Stopwatch\Stopwatch;
use Symfony\Component\Templating\Loader\LoaderInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Times the time spent to render a template.

View File

@ -11,9 +11,9 @@
namespace Symfony\Bundle\TwigBundle\CacheWarmer;
use Psr\Container\ContainerInterface;
use Symfony\Component\Finder\Finder;
use Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Bundle\FrameworkBundle\CacheWarmer\TemplateFinderInterface;
use Symfony\Component\Templating\TemplateReference;