Passed
Push — main ( 89e46a...7f37fd )
by Loïc
03:53
created
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/packages/csrf.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\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
6 6
 use Symfony\Component\HttpKernel\Kernel;
7 7
 
8
-return static function (ContainerConfigurator $containerConfigurator): void {
8
+return static function(ContainerConfigurator $containerConfigurator): void {
9 9
     // This configutation file is specific to Symfony 7.2+
10 10
     if (Kernel::VERSION_ID < 70200) {
11 11
         return;
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
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
15 15
 use Symfony\Component\HttpKernel\Kernel;
16 16
 
17
-return static function (ContainerConfigurator $containerConfigurator): void {
17
+return static function(ContainerConfigurator $containerConfigurator): void {
18 18
     $parameters = $containerConfigurator->parameters();
19 19
 
20 20
     // System parameters: https://symfony.com/doc/current/performance.html#dump-the-service-container-into-a-single-file
Please login to merge, or discard this patch.