Completed
Pull Request — development (#801)
by
unknown
04:18
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/Repository/CachesRepository.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -71,12 +71,12 @@
 block discarded – undo
71 71
     public function getEntityFromDatabaseArray(array $data): CachesEntity
72 72
     {
73 73
         $entity = new CachesEntity();
74
-        $entity->id = (int) $data['cache_id'];
74
+        $entity->id = (int)$data['cache_id'];
75 75
         $entity->name = $data['name'];
76 76
         $entity->wp_gc = $data['wp_gc'];
77 77
         $entity->wp_oc = $data['wp_oc'];
78
-        $entity->latitude = (double) $data['latitude'];
79
-        $entity->longitude = (double) $data['longitude'];
78
+        $entity->latitude = (double)$data['latitude'];
79
+        $entity->longitude = (double)$data['longitude'];
80 80
 
81 81
         return $entity;
82 82
     }
Please login to merge, or discard this patch.