Passed
Branch main (e78800)
by Loïc
04:46
created
config/routes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 use Symfony\Bundle\FrameworkBundle\Controller\TemplateController;
6 6
 use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
7 7
 
8
-return static function (RoutingConfigurator $routingConfigurator): void {
8
+return static function(RoutingConfigurator $routingConfigurator): void {
9 9
     $routingConfigurator->import([
10 10
         'path' => '../src/Controller/',
11 11
         'namespace' => 'App\Controller',
Please login to merge, or discard this patch.
config/routes/framework.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
6 6
 
7
-return static function (RoutingConfigurator $routingConfigurator): void {
7
+return static function(RoutingConfigurator $routingConfigurator): void {
8 8
     if ($routingConfigurator->env() === 'dev') {
9 9
         $routingConfigurator->import('@FrameworkBundle/Resources/config/routing/errors.xml')
10 10
         ->prefix('/_error');
Please login to merge, or discard this patch.
config/routes/web_profiler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
6 6
 
7
-return static function (RoutingConfigurator $routingConfigurator): void {
7
+return static function(RoutingConfigurator $routingConfigurator): void {
8 8
     if ($routingConfigurator->env() === 'dev') {
9 9
         $routingConfigurator->import('@WebProfilerBundle/Resources/config/routing/wdt.xml')
10 10
         ->prefix('/_wdt');
Please login to merge, or discard this patch.
config/services.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
12 12
 use Symfony\Component\HttpKernel\Kernel;
13 13
 
14
-return static function (ContainerConfigurator $containerConfigurator): void {
14
+return static function(ContainerConfigurator $containerConfigurator): void {
15 15
     // Parameters
16 16
     $parameters = $containerConfigurator->parameters();
17 17
 
Please login to merge, or discard this patch.