Completed
Push — development ( 0831aa...670cb8 )
by Thomas
17:18 queued 10:03
created
htdocs_symfony/config/services.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 use Symfony\Component\Security\Core\Role\RoleHierarchyInterface;
8 8
 use function Symfony\Component\DependencyInjection\Loader\Configurator\service;
9 9
 
10
-return static function (ContainerConfigurator $containerConfigurator): void {
10
+return static function(ContainerConfigurator $containerConfigurator): void {
11 11
     $services = $containerConfigurator->services();
12 12
 
13 13
     $services->defaults()
Please login to merge, or discard this patch.
htdocs_symfony/config/routes/dev/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
     $routingConfigurator->import('@FrameworkBundle/Resources/config/routing/errors.xml')
9 9
         ->prefix('/_error');
10 10
 };
Please login to merge, or discard this patch.
htdocs_symfony/config/routes/dev/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
     $routingConfigurator->import('@WebProfilerBundle/Resources/config/routing/wdt.xml')
9 9
         ->prefix('/_wdt');
10 10
 
Please login to merge, or discard this patch.
htdocs_symfony/config/routes/annotations.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
     $routingConfigurator->import('../../src/Controller/App', 'annotation')
9 9
         ->namePrefix('app_');
10 10
 
Please login to merge, or discard this patch.
htdocs_symfony/src/Controller/Backend/CachesController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
 
104 104
             $array_size = count($fetched_caches);
105 105
 
106
-            for ($i = 0; $i < $array_size; $i ++) {
106
+            for ($i = 0; $i < $array_size; $i++) {
107 107
                 // replace existing log passwords with something different
108 108
                 // nur der Teil mit den Bilderzuweisungen müsste nochmal überdacht werden..
109 109
                 if ($fetched_caches[$i]["logpw"] != "") {
Please login to merge, or discard this patch.
htdocs_symfony/src/Form/CachesFormType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,6 +17,6 @@
 block discarded – undo
17 17
                                             'trim' => true,
18 18
                                             'help' => 'TIPP: Nur Wegpunkte oder Teile des Cachetitels werden nachgeschlagen. Um alle Caches aufzulisten: %'
19 19
                                         ]
20
-        );;
20
+        ); ;
21 21
     }
22 22
 }
Please login to merge, or discard this patch.