move RectorKernel to HttpKernel namespace

This commit is contained in:
Tomas Votruba 2019-02-08 15:53:06 +01:00
parent 117aeb6247
commit ed61c8eca3
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
namespace Rector\DependencyInjection;
use Psr\Container\ContainerInterface;
use Rector\HttpKernel\RectorKernel;
final class ContainerFactory
{

View File

@ -1,6 +1,6 @@
<?php declare(strict_types=1);
namespace Rector\DependencyInjection;
namespace Rector\HttpKernel;
use Rector\Contract\Rector\RectorInterface;
use Rector\DependencyInjection\CompilerPass\RemoveExcludedRectorsCompilerPass;