Completed
Push — master ( 7cb054...584ba8 )
by Tim
44:11 queued 26:38
created
Classes/Loader/ContentObjects.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@
 block discarded – undo
186 186
      */
187 187
     protected function getClassPropertiesInLowerCaseUnderscored($className)
188 188
     {
189
-        return array_map(function ($value) {
189
+        return array_map(function($value) {
190 190
             return GeneralUtility::camelCaseToLowerCaseUnderscored($value);
191 191
         }, ReflectionUtility::getDeclaringProperties($className));
192 192
     }
Please login to merge, or discard this patch.
Classes/Loader/Slots.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,8 +88,8 @@
 block discarded – undo
88 88
     public function flattenSlotsByPriority(array $array) {
89 89
         krsort($array);
90 90
         $result = [];
91
-        foreach($array as $priority => $slots) {
92
-            foreach($slots as $slot) {
91
+        foreach ($array as $priority => $slots) {
92
+            foreach ($slots as $slot) {
93 93
                 $result[] = $slot;
94 94
             }
95 95
         }
Please login to merge, or discard this patch.
Classes/Hooks/ElementBackendPreview.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      *
34 34
      * @return void
35 35
      */
36
-    public function preProcess(PageLayoutView &$parentObject, &$drawItem, &$headerContent, &$itemContent, array &$row)
36
+    public function preProcess(PageLayoutView&$parentObject, &$drawItem, &$headerContent, &$itemContent, array &$row)
37 37
     {
38 38
         if (!$this->isAutoloaderContenobject($row)) {
39 39
             return;
Please login to merge, or discard this patch.