Skip to content

Commit 9663805

Browse files
[FrameworkBundle] don't use abstract methods in MicroKernelTrait, their semantics changed in PHP 8
1 parent 91c2cb2 commit 9663805

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Kernel/MicroKernelTrait.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ trait MicroKernelTrait
3939
* ->controller('App\Controller\AdminController::dashboard')
4040
* ;
4141
*/
42-
abstract protected function configureRoutes(RoutingConfigurator $routes);
42+
//abstract protected function configureRoutes(RoutingConfigurator $routes);
4343

4444
/**
4545
* Configures the container.
@@ -58,7 +58,7 @@ abstract protected function configureRoutes(RoutingConfigurator $routes);
5858
*
5959
* $c->parameters()->set('halloween', 'lot of fun');
6060
*/
61-
abstract protected function configureContainer(ContainerConfigurator $c);
61+
//abstract protected function configureContainer(ContainerConfigurator $c);
6262

6363
/**
6464
* {@inheritdoc}

0 commit comments

Comments
 (0)