Passed
Push — master ( 3fd334...04d844 )
by
unknown
14:33
created
typo3/sysext/frontend/Classes/Http/RequestHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -458,7 +458,7 @@
 block discarded – undo
458 458
                                 $cssFileConfig['alternate'] ? 'alternate stylesheet' : 'stylesheet',
459 459
                                 $cssFileConfig['media'] ?: 'all',
460 460
                                 $cssFileConfig['title'] ?: '',
461
-                                $cssFileConfig['external']  || (bool)$cssFileConfig['inline'] ? false : empty($cssFileConfig['disableCompression']),
461
+                                $cssFileConfig['external'] || (bool)$cssFileConfig['inline'] ? false : empty($cssFileConfig['disableCompression']),
462 462
                                 (bool)$cssFileConfig['forceOnTop'],
463 463
                                 $cssFileConfig['allWrap'],
464 464
                                 (bool)$cssFileConfig['excludeFromConcatenation'] || (bool)$cssFileConfig['inline'],
Please login to merge, or discard this patch.
typo3/sysext/frontend/Classes/ServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,9 +39,9 @@
 block discarded – undo
39 39
     public function getFactories(): array
40 40
     {
41 41
         return [
42
-            Http\Application::class => [ static::class, 'getApplication' ],
43
-            Http\RequestHandler::class => [ static::class, 'getRequestHandler' ],
44
-            'frontend.middlewares' => [ static::class, 'getFrontendMiddlewares' ],
42
+            Http\Application::class => [static::class, 'getApplication'],
43
+            Http\RequestHandler::class => [static::class, 'getRequestHandler'],
44
+            'frontend.middlewares' => [static::class, 'getFrontendMiddlewares'],
45 45
         ];
46 46
     }
47 47
 
Please login to merge, or discard this patch.
typo3/sysext/adminpanel/Classes/Modules/DebugModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
 
57 57
     public function getShortInfo(): string
58 58
     {
59
-        $errorsAndWarnings = array_filter(InMemoryLogWriter::$log, function (LogRecord $entry) {
59
+        $errorsAndWarnings = array_filter(InMemoryLogWriter::$log, function(LogRecord $entry) {
60 60
             return LogLevel::normalizeLevel($entry->getLevel()) <= 4;
61 61
         });
62 62
         return sprintf($this->getLanguageService()->sL(
Please login to merge, or discard this patch.
typo3/sysext/adminpanel/Classes/Modules/Info/UserIntInformation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
         $intScripts = $GLOBALS['TSFE']->config['INTincScript'] ?? [];
86 86
 
87 87
         foreach ($intScripts as $intScriptName => $intScriptConf) {
88
-            $info = isset($intScriptConf['type']) ?  ['TYPE' => $intScriptConf['type']] : [];
88
+            $info = isset($intScriptConf['type']) ? ['TYPE' => $intScriptConf['type']] : [];
89 89
             foreach ($intScriptConf['conf'] as $key => $conf) {
90 90
                 if (is_array($conf)) {
91 91
                     $conf = ArrayUtility::flatten($conf);
Please login to merge, or discard this patch.
typo3/sysext/felogin/Classes/Controller/LoginController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@
 block discarded – undo
153 153
                 'storagePid' => implode(',', $this->getStorageFolders()),
154 154
                 'permaloginStatus' => $this->getPermaloginStatus(),
155 155
                 'redirectURL' => $this->redirectHandler->getLoginFormRedirectUrl($this->configuration, $this->isRedirectDisabled()),
156
-                'redirectReferrer' => $this->request->hasArgument('redirectReferrer') ? (string)$this->request->getArgument('redirectReferrer'): '',
156
+                'redirectReferrer' => $this->request->hasArgument('redirectReferrer') ? (string)$this->request->getArgument('redirectReferrer') : '',
157 157
                 'referer' => $this->requestHandler->getPropertyFromGetAndPost('referer'),
158 158
                 'noRedirect' => $this->isRedirectDisabled(),
159 159
             ]
Please login to merge, or discard this patch.
typo3/sysext/rte_ckeditor/Classes/Form/Element/RichTextElement.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -132,28 +132,28 @@
 block discarded – undo
132 132
 
133 133
         $html = [];
134 134
         $html[] = '<div class="formengine-field-item t3js-formengine-field-item">';
135
-        $html[] =   $fieldInformationHtml;
136
-        $html[] =   '<div class="form-control-wrap">';
137
-        $html[] =       '<div class="form-wizards-wrap">';
138
-        $html[] =           '<div class="form-wizards-element">';
139
-        $html[] =               '<textarea ' . GeneralUtility::implodeAttributes($attributes, true) . '>';
140
-        $html[] =                   htmlspecialchars($value);
141
-        $html[] =               '</textarea>';
142
-        $html[] =           '</div>';
135
+        $html[] = $fieldInformationHtml;
136
+        $html[] = '<div class="form-control-wrap">';
137
+        $html[] = '<div class="form-wizards-wrap">';
138
+        $html[] = '<div class="form-wizards-element">';
139
+        $html[] = '<textarea ' . GeneralUtility::implodeAttributes($attributes, true) . '>';
140
+        $html[] = htmlspecialchars($value);
141
+        $html[] = '</textarea>';
142
+        $html[] = '</div>';
143 143
         if (!empty($fieldControlHtml)) {
144
-            $html[] =           '<div class="form-wizards-items-aside">';
145
-            $html[] =               '<div class="btn-group">';
146
-            $html[] =                   $fieldControlHtml;
147
-            $html[] =               '</div>';
148
-            $html[] =           '</div>';
144
+            $html[] = '<div class="form-wizards-items-aside">';
145
+            $html[] = '<div class="btn-group">';
146
+            $html[] = $fieldControlHtml;
147
+            $html[] = '</div>';
148
+            $html[] = '</div>';
149 149
         }
150 150
         if (!empty($fieldWizardHtml)) {
151 151
             $html[] = '<div class="form-wizards-items-bottom">';
152 152
             $html[] = $fieldWizardHtml;
153 153
             $html[] = '</div>';
154 154
         }
155
-        $html[] =       '</div>';
156
-        $html[] =   '</div>';
155
+        $html[] = '</div>';
156
+        $html[] = '</div>';
157 157
         $html[] = '</div>';
158 158
 
159 159
         $resultArray['html'] = implode(LF, $html);
Please login to merge, or discard this patch.
typo3/sysext/linkvalidator/Classes/Repository/BrokenLinkRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
         ];
139 139
         while ($row = $statement->fetch()) {
140 140
             $result[$row['link_type']] = $row['amount'];
141
-            $result['total']+= $row['amount'];
141
+            $result['total'] += $row['amount'];
142 142
         }
143 143
         return $result;
144 144
     }
Please login to merge, or discard this patch.
typo3/sysext/extbase/Classes/Utility/DebuggerUtility.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
                 $dump = self::ansiEscapeWrap('"' . implode(PHP_EOL . str_repeat(self::PLAINTEXT_INDENT, $level + 1), str_split($croppedValue, 76)) . '"', '33', $ansiColors) . ' (' . strlen($value) . ' chars)';
95 95
             } else {
96 96
                 $lines = str_split($croppedValue, 76);
97
-                $lines = array_map(static function (string $line): string {
97
+                $lines = array_map(static function(string $line): string {
98 98
                     return htmlspecialchars($line, ENT_COMPAT);
99 99
                 }, $lines);
100 100
                 $dump = sprintf('\'<span class="extbase-debug-string">%s</span>\' (%s chars)', implode('<br />' . str_repeat(self::HTML_INDENT, $level + 1), $lines), strlen($value));
Please login to merge, or discard this patch.
typo3/sysext/extbase/Classes/Reflection/ClassSchema/Method.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
         $position = 0;
103 103
 
104
-        $parameters = array_filter($this->getParameters(), function (MethodParameter $parameter) use ($position) {
104
+        $parameters = array_filter($this->getParameters(), function(MethodParameter $parameter) use ($position) {
105 105
             return $parameter->getPosition() === $position;
106 106
         });
107 107
 
Please login to merge, or discard this patch.