Completed
Push — master ( 3bbef5...a95c12 )
by Tim
21:12 queued 06:23
created
Classes/Service/WizardHandler/AbstractWizardHandler.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
             $url = $imageService->getImageUri($processedImage);
72 72
         }
73 73
 
74
-        if(filter_var($url, FILTER_VALIDATE_URL)) {
74
+        if (filter_var($url, FILTER_VALIDATE_URL)) {
75 75
             return $url;
76 76
         }
77 77
 
@@ -88,8 +88,8 @@  discard block
 block discarded – undo
88 88
     protected function cleanupPosition(array $position): array
89 89
     {
90 90
         return [
91
-            MathUtility::forceIntegerInRange((int) $position[0], -100, 100, 0),
92
-            MathUtility::forceIntegerInRange((int) $position[1], -100, 100, 0),
91
+            MathUtility::forceIntegerInRange((int)$position[0], -100, 100, 0),
92
+            MathUtility::forceIntegerInRange((int)$position[1], -100, 100, 0),
93 93
         ];
94 94
     }
95 95
 }
Please login to merge, or discard this patch.