Passed
Push — master ( a7bade...f16b47 )
by
unknown
17:39
created
typo3/sysext/recordlist/Classes/RecordList/DatabaseRecordList.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1688,7 +1688,7 @@
 block discarded – undo
1688 1688
             if (!$isDeletePlaceHolder) {
1689 1689
                 $attributes = $this->getPreviewUriBuilder($table, $row)->serializeDispatcherAttributes();
1690 1690
                 $viewAction = '<a class="btn btn-default" href="#" ' . $attributes
1691
-                     . ' title="' . htmlspecialchars($this->getLanguageService()->sL('LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:labels.showPage')) . '">';
1691
+                        . ' title="' . htmlspecialchars($this->getLanguageService()->sL('LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:labels.showPage')) . '">';
1692 1692
                 if ($table === 'pages') {
1693 1693
                     $viewAction .= $this->iconFactory->getIcon('actions-view-page', Icon::SIZE_SMALL)->render();
1694 1694
                 } else {
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/Routing/PreviewUriBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -311,7 +311,7 @@
 block discarded – undo
311 311
     protected function prefixAttributeNames(string $prefix, array $attributes): array
312 312
     {
313 313
         $attributeNames = array_map(
314
-            function (string $name) use ($prefix): string {
314
+            function(string $name) use ($prefix): string {
315 315
                 return $prefix . $name;
316 316
             },
317 317
             array_keys($attributes)
Please login to merge, or discard this patch.
typo3/sysext/info/Classes/Controller/InfoModuleController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -261,7 +261,7 @@
 block discarded – undo
261 261
         $languageService = $this->getLanguageService();
262 262
         $buttonBar = $this->moduleTemplate->getDocHeaderComponent()->getButtonBar();
263 263
         // View page
264
-        $previewDataAttributes =PreviewUriBuilder::create((int)$this->pageinfo['uid'])
264
+        $previewDataAttributes = PreviewUriBuilder::create((int)$this->pageinfo['uid'])
265 265
             ->withRootLine(BackendUtility::BEgetRootLine($this->pageinfo['uid']))
266 266
             ->buildDispatcherDataAttributes();
267 267
         $viewButton = $buttonBar->makeLinkButton()
Please login to merge, or discard this patch.