Completed
Push — master ( a95c12...38c767 )
by Tim
30:09 queued 15:05
created
Classes/Service/CropService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
             'GifBuilder',
67 67
             'ImageMagick',
68 68
         ];
69
-        if(VersionNumberUtility::convertVersionStringToArray(VersionNumberUtility::getCurrentTypo3Version())['version_main'] < 9) {
69
+        if (VersionNumberUtility::convertVersionStringToArray(VersionNumberUtility::getCurrentTypo3Version())['version_main'] < 9) {
70 70
 			$configuration = isset($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['focuspoint']) ? \unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf']['focuspoint']) : [];
71 71
 		} else {
72 72
 			$configuration = GeneralUtility::makeInstance(ExtensionConfiguration::class)->get('focuspoint');
Please login to merge, or discard this patch.
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.