Completed
Push — master ( 5c6c69...b6b6f7 )
by
unknown
01:03
created
Classes/Domain/Repository/RawIndexRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
         }
99 99
 
100 100
         // @todo check
101
-        $result = array_values(array_filter($result, static function ($item) {
101
+        $result = array_values(array_filter($result, static function($item) {
102 102
             return \is_array($item) && VersionState::DELETE_PLACEHOLDER !== $item['t3ver_state'];
103 103
         }));
104 104
 
Please login to merge, or discard this patch.
Classes/Typolink/DatabaseRecordLinkBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
     {
102 102
         static $tables;
103 103
         if (!\is_array($tables)) {
104
-            $tables = array_map(static function ($config) {
104
+            $tables = array_map(static function($config) {
105 105
                 return $config['tableName'];
106 106
             }, GeneralUtility::makeInstance(Register::class)->getRegister());
107 107
         }
Please login to merge, or discard this patch.
Classes/ViewHelpers/DateTime/FormatUtcDateViewHelper.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
         $date = $arguments['date'];
35 35
         if ($date instanceof \DateTimeInterface) {
36
-            $renderChildrenClosure = static function () use ($date) {
36
+            $renderChildrenClosure = static function() use ($date) {
37 37
                 // Convert date to timestamp, so that it can be reparsed.
38 38
                 return $date->getTimestamp();
39 39
             };
Please login to merge, or discard this patch.
Classes/Hooks/CmsLayout.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 
65 65
         $actions = $this->flexFormService->get('switchableControllerActions', 'main');
66 66
         $parts = GeneralUtility::trimExplode(';', $actions, true);
67
-        $parts = array_map(static function ($element) {
67
+        $parts = array_map(static function($element) {
68 68
             $split = explode('->', $element);
69 69
 
70 70
             return ucfirst($split[1]);
Please login to merge, or discard this patch.