12 lines
319 B
PHP
12 lines
319 B
PHP
|
<?php declare(strict_types=1);
|
||
|
|
||
|
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
|
||
|
|
||
|
return function (RoutingConfigurator $routes) {
|
||
|
|
||
|
// if the action is implemented as the __invoke() method of the
|
||
|
// controller class, you can skip the 'method_name' part:
|
||
|
// ->controller(BlogController::class)
|
||
|
;
|
||
|
};
|