Completed
Push — develop ( f05cec...11f198 )
by Daniel
07:33
created
src/EventSubscriber/ApiPlatform/PageSubscriber.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     {
16 16
         return [
17 17
             KernelEvents::VIEW => [
18
-              ['provideDefaultLayout', EventPriorities::PRE_SERIALIZE]
18
+                ['provideDefaultLayout', EventPriorities::PRE_SERIALIZE]
19 19
             ]
20 20
         ];
21 21
     }
Please login to merge, or discard this patch.
src/EventSubscriber/ApiPlatform/FileSubscriber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     public static function getSubscribedServices(): array
24 24
     {
25 25
         return [
26
-            '?' .  FileDataFactory::class
26
+            '?' . FileDataFactory::class
27 27
         ];
28 28
     }
29 29
 
Please login to merge, or discard this patch.
src/Factory/FileDataFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
         $objectId = $this->iriConverter->getIriFromItem($file);
57 57
         return $this->router->generate(
58 58
             'files_upload',
59
-            [ 'field' => 'filePath', 'id' => $objectId ]
59
+            ['field' => 'filePath', 'id' => $objectId]
60 60
         );
61 61
     }
62 62
 
Please login to merge, or discard this patch.