File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,9 @@ resources::
117
117
// src/Kernel.php
118
118
namespace Shared;
119
119
120
+ use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
120
121
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
122
+ use Symfony\Component\HttpKernel\Kernel as BaseKernel;
121
123
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
122
124
123
125
class Kernel extends BaseKernel
@@ -258,6 +260,7 @@ the application ID to run under CLI context::
258
260
259
261
// bin/console
260
262
use Shared\Kernel;
263
+ use Symfony\Bundle\FrameworkBundle\Console\Application;
261
264
use Symfony\Component\Console\Input\InputInterface;
262
265
use Symfony\Component\Console\Input\InputOption;
263
266
Original file line number Diff line number Diff line change @@ -606,7 +606,7 @@ to remove the ``kernel.reset`` tag from some services in your test environment::
606
606
607
607
// ...
608
608
609
- protected function process(ContainerBuilder $container): void
609
+ public function process(ContainerBuilder $container): void
610
610
{
611
611
if ('test' === $this->environment) {
612
612
// prevents the security token to be cleared
You can’t perform that action at this time.
0 commit comments