mirror of
https://github.com/symfony/recipes.git
synced 2026-09-12 07:36:30 +03:00
13 lines
306 B
PHP
13 lines
306 B
PHP
<?php
|
|
|
|
use App\Kernel;
|
|
use Symfony\Bundle\FrameworkBundle\Routing\Loader\Configurator\RoutingConfigurator;
|
|
|
|
return static function (RoutingConfigurator $routes, Kernel $kernel): void {
|
|
|
|
// $routes->add('index', '/')
|
|
// ->controller([App\Controller\DefaultController::class, 'index'])
|
|
// ;
|
|
|
|
};
|