Completed
Push — master ( ba0ea8...c1bb75 )
by
unknown
25:13 queued 10:52
created
Classes/ExpressionLanguage/FunctionsProvider/DefaultFunctionsProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
             },
68 68
             function ($arguments, $str) {
69 69
                 return VersionNumberUtility::convertVersionNumberToInteger(TYPO3_branch) >=
70
-                   VersionNumberUtility::convertVersionNumberToInteger($str);
70
+                    VersionNumberUtility::convertVersionNumberToInteger($str);
71 71
             }
72 72
         );
73 73
     }
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/TypoScript/Parser/ConstantConfigurationParser.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@
 block discarded – undo
259 259
                                     $editableComments[$const]['subcat_name'] = $catSplit[1];
260 260
                                     $orderIdentifier = isset($catSplit[2]) ? trim($catSplit[2]) : $counter;
261 261
                                     $editableComments[$const]['subcat'] = $this->subCategories[$catSplit[1]][1]
262
-                                                                          . '/' . $catSplit[1] . '/' . $orderIdentifier . 'z';
262
+                                                                            . '/' . $catSplit[1] . '/' . $orderIdentifier . 'z';
263 263
                                 } elseif (isset($catSplit[2])) {
264 264
                                     $editableComments[$const]['subcat'] = 'x/' . trim($catSplit[2]) . 'z';
265 265
                                 } else {
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/Utility/BackendUtility.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -418,8 +418,8 @@
 block discarded – undo
418 418
             if (!$statement) {
419 419
                 $queryBuilder = static::getQueryBuilderForTable('pages');
420 420
                 $queryBuilder->getRestrictions()
421
-                             ->removeAll()
422
-                             ->add(GeneralUtility::makeInstance(DeletedRestriction::class));
421
+                                ->removeAll()
422
+                                ->add(GeneralUtility::makeInstance(DeletedRestriction::class));
423 423
 
424 424
                 $queryBuilder
425 425
                     ->select(
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/View/PageLayoutView.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1193,7 +1193,7 @@
 block discarded – undo
1193 1193
                         ) {
1194 1194
                             if (!$hideRestrictedCols) {
1195 1195
                                 $grid .= $this->tt_content_drawColHeader($this->getLanguageService()->sL($columnConfig['name']) .
1196
-                                  ' (' . $this->getLanguageService()->getLL('noAccess') . ')');
1196
+                                    ' (' . $this->getLanguageService()->getLL('noAccess') . ')');
1197 1197
                                 $grid .= $this->dispatchSectionMarkupGeneratedEvent('before', $lP, $columnConfig);
1198 1198
                             }
1199 1199
                         } elseif (isset($columnConfig['name']) && $columnConfig['name'] !== '') {
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/Controller/BackendController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -370,7 +370,7 @@
 block discarded – undo
370 370
             TYPO3.ModuleMenu.App.showModule(modName, addGetVars);
371 371
         }
372 372
         ' . $this->setStartupModule($request)
373
-          . $this->handlePageEditing($request),
373
+            . $this->handlePageEditing($request),
374 374
             false
375 375
         );
376 376
     }
Please login to merge, or discard this patch.
typo3/sysext/viewpage/Classes/Controller/ViewModuleController.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,6 @@
 block discarded – undo
88 88
 
89 89
     /**
90 90
      * Register the doc header
91
-
92 91
      * @param int $pageId
93 92
      * @param int $languageId
94 93
      * @param string $targetUrl
Please login to merge, or discard this patch.
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.