Passed
Push — master ( 3fd334...04d844 )
by
unknown
14:33
created
backend/Classes/Command/ProgressListener/ReferenceIndexProgressListener.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
             return;
70 70
         }
71 71
         if ($additionalMessage) {
72
-            $this->showMessageWhileInProgress(function () use ($additionalMessage) {
72
+            $this->showMessageWhileInProgress(function() use ($additionalMessage) {
73 73
                 $this->io->writeln($additionalMessage);
74 74
             });
75 75
         }
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         if (!$this->isEnabled) {
99 99
             return;
100 100
         }
101
-        $this->showMessageWhileInProgress(function () use ($message, $logLevel) {
101
+        $this->showMessageWhileInProgress(function() use ($message, $logLevel) {
102 102
             switch ($logLevel) {
103 103
                 case LogLevel::ERROR:
104 104
                     $this->io->error($message);
Please login to merge, or discard this patch.
install/Classes/ExtensionScanner/Php/Matcher/ConstructorArgumentMatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@
 block discarded – undo
200 200
         // keeping positions having argument values that are not null
201 201
         $unusedArgumentPositions = array_filter(
202 202
             $unusedArgumentPositions,
203
-            function (int $position) use ($arguments) {
203
+            function(int $position) use ($arguments) {
204 204
                 $index = $position - 1;
205 205
                 return isset($arguments[$index]->value)
206 206
                     && !$arguments[$index]->value instanceof ConstFetch
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/Form/Element/CheckboxElement.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -142,16 +142,16 @@
 block discarded – undo
142 142
         $html = [];
143 143
         $html[] = '<div class="formengine-field-item t3js-formengine-field-item">';
144 144
         $html[] = $fieldInformationHtml;
145
-        $html[] =   '<div class="form-wizards-wrap">';
146
-        $html[] =       '<div class="form-wizards-element">';
147
-        $html[] =           $elementHtml;
148
-        $html[] =       '</div>';
145
+        $html[] = '<div class="form-wizards-wrap">';
146
+        $html[] = '<div class="form-wizards-element">';
147
+        $html[] = $elementHtml;
148
+        $html[] = '</div>';
149 149
         if (!$disabled && !empty($fieldWizardHtml)) {
150
-            $html[] =   '<div class="form-wizards-items-bottom">';
151
-            $html[] =       $fieldWizardHtml;
152
-            $html[] =   '</div>';
150
+            $html[] = '<div class="form-wizards-items-bottom">';
151
+            $html[] = $fieldWizardHtml;
152
+            $html[] = '</div>';
153 153
         }
154
-        $html[] =   '</div>';
154
+        $html[] = '</div>';
155 155
         $html[] = '</div>';
156 156
 
157 157
         $resultArray['html'] = implode(LF, $html);
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/Form/Element/CheckboxLabeledToggleElement.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -142,16 +142,16 @@
 block discarded – undo
142 142
         $html = [];
143 143
         $html[] = '<div class="formengine-field-item t3js-formengine-field-item">';
144 144
         $html[] = $fieldInformationHtml;
145
-        $html[] =   '<div class="form-wizards-wrap">';
146
-        $html[] =       '<div class="form-wizards-element">';
147
-        $html[] =           $elementHtml;
148
-        $html[] =       '</div>';
145
+        $html[] = '<div class="form-wizards-wrap">';
146
+        $html[] = '<div class="form-wizards-element">';
147
+        $html[] = $elementHtml;
148
+        $html[] = '</div>';
149 149
         if (!$disabled && !empty($fieldWizardHtml)) {
150
-            $html[] =   '<div class="form-wizards-items-bottom">';
151
-            $html[] =       $fieldWizardHtml;
152
-            $html[] =   '</div>';
150
+            $html[] = '<div class="form-wizards-items-bottom">';
151
+            $html[] = $fieldWizardHtml;
152
+            $html[] = '</div>';
153 153
         }
154
-        $html[] =   '</div>';
154
+        $html[] = '</div>';
155 155
         $html[] = '</div>';
156 156
 
157 157
         $resultArray['html'] = implode(LF, $html);
Please login to merge, or discard this patch.
typo3/sysext/extbase/Classes/Configuration/AbstractConfigurationManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@
 block discarded – undo
189 189
                 // All implementations of getTreeList allow to pass the ids negative to include them into the result
190 190
                 // otherwise only childpages are returned
191 191
                 $storagePids = GeneralUtility::intExplode(',', $frameworkConfiguration['persistence']['storagePid']);
192
-                array_walk($storagePids, function (&$storagePid) {
192
+                array_walk($storagePids, function(&$storagePid) {
193 193
                     if ($storagePid > 0) {
194 194
                         $storagePid = -$storagePid;
195 195
                     }
Please login to merge, or discard this patch.
sysext/extbase/Classes/Validation/Validator/AbstractCompositeValidator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         // check for required options being set
62 62
         array_walk(
63 63
             $this->supportedOptions,
64
-            function ($supportedOptionData, $supportedOptionName, $options) {
64
+            function($supportedOptionData, $supportedOptionName, $options) {
65 65
                 if (isset($supportedOptionData[3]) && !array_key_exists($supportedOptionName, $options)) {
66 66
                     throw new InvalidValidationOptionsException('Required validation option not set: ' . $supportedOptionName, 1339163922);
67 67
                 }
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
         // merge with default values
73 73
         $this->options = array_merge(
74 74
             array_map(
75
-                function ($value) {
75
+                function($value) {
76 76
                     return $value[0];
77 77
                 },
78 78
                 $this->supportedOptions
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Log/LogManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
                     /** @var \TYPO3\CMS\Core\Log\Writer\WriterInterface $logWriter */
146 146
                     $logWriter = GeneralUtility::makeInstance($logWriterClassName, $logWriterOptions);
147 147
                     $logger->addWriter($severityLevel, $logWriter);
148
-                } catch (InvalidArgumentException|InvalidLogWriterConfigurationException $e) {
148
+                } catch (InvalidArgumentException | InvalidLogWriterConfigurationException $e) {
149 149
                     $logger->warning('Instantiation of LogWriter "' . $logWriterClassName . '" failed for logger ' . $logger->getName() . ' (' . $e->getMessage() . ')');
150 150
                 }
151 151
             }
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
                     /** @var \TYPO3\CMS\Core\Log\Processor\ProcessorInterface $logProcessor */
167 167
                     $logProcessor = GeneralUtility::makeInstance($logProcessorClassName, $logProcessorOptions);
168 168
                     $logger->addProcessor($severityLevel, $logProcessor);
169
-                } catch (InvalidArgumentException|InvalidLogProcessorConfigurationException $e) {
169
+                } catch (InvalidArgumentException | InvalidLogProcessorConfigurationException $e) {
170 170
                     $logger->warning('Instantiation of LogProcessor "' . $logProcessorClassName . '" failed for logger ' . $logger->getName() . ' (' . $e->getMessage() . ')');
171 171
                 }
172 172
             }
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Resource/Service/UserFileMountService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     public function renderTceformsSelectDropdown(&$PA)
44 44
     {
45 45
         $allowedStorageIds = array_map(
46
-            function (ResourceStorage $storage) {
46
+            function(ResourceStorage $storage) {
47 47
                 return $storage->getUid();
48 48
             },
49 49
             $this->getBackendUserAuthentication()->getFileStorages()
Please login to merge, or discard this patch.
typo3/sysext/scheduler/Classes/Task/ExecuteSchedulableCommandTask.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
         try {
127 127
             $input = new ArrayInput($this->getParameters(true), $schedulableCommand->getDefinition());
128 128
             $arguments = $input->__toString();
129
-        } catch (\Symfony\Component\Console\Exception\RuntimeException|InvalidArgumentException $e) {
129
+        } catch (\Symfony\Component\Console\Exception\RuntimeException | InvalidArgumentException $e) {
130 130
             return $label . "\n"
131 131
                 . sprintf(
132 132
                     $this->getLanguageService()->sL('LLL:EXT:scheduler/Resources/Private/Language/locallang.xlf:msg.errorParsingArguments'),
Please login to merge, or discard this patch.