Completed
Push — master ( af32df...1507bf )
by
unknown
21:00
created
typo3/sysext/extbase/Classes/Reflection/ClassSchema.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -364,7 +364,7 @@
 block discarded – undo
364 364
                         }
365 365
                     }
366 366
                 }
367
-                $this->methods[$methodName]['tags'][$tag] = array_map(function ($value) use ($tag) {
367
+                $this->methods[$methodName]['tags'][$tag] = array_map(function($value) use ($tag) {
368 368
                     // not stripping the dollar sign for @validate annotations is just
369 369
                     // a quick fix for a regression introduced in 9.0.0.
370 370
                     // This exception to the rules will vanish once the resolving of
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/Service/CoreVersionService.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -105,9 +105,9 @@
 block discarded – undo
105 105
 
106 106
         return !isset($result['maintained_until']) ||
107 107
                (
108
-                   new \DateTimeImmutable($result['maintained_until']) >=
109
-                   new \DateTimeImmutable('now', new \DateTimeZone('UTC'))
110
-               );
108
+                    new \DateTimeImmutable($result['maintained_until']) >=
109
+                    new \DateTimeImmutable('now', new \DateTimeZone('UTC'))
110
+                );
111 111
     }
112 112
 
113 113
     /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace TYPO3\CMS\Install\Service;
5 5
 
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/Updates/AbstractDownloadExtensionUpdate.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -94,9 +94,9 @@
 block discarded – undo
94 94
         if ($isComposerMode && !$isExtensionAvailable) {
95 95
             $updateSuccessful = false;
96 96
             $customMessage .= 'The extension ' . $extensionKey . ' can not be downloaded since ' .
97
-              'Composer is used for package management. Please require this ' .
98
-              'extension as package via Composer: ' .
99
-              '"composer require ' . $extensionDetails['composerName'] . ':^' . $extensionDetails['versionString'] . '"';
97
+                'Composer is used for package management. Please require this ' .
98
+                'extension as package via Composer: ' .
99
+                '"composer require ' . $extensionDetails['composerName'] . ':^' . $extensionDetails['versionString'] . '"';
100 100
         }
101 101
 
102 102
         if ($updateSuccessful) {
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Utility/GeneralUtility.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3078,7 +3078,7 @@  discard block
 block discarded – undo
3078 3078
             // is relative. Prepended with PATH_site
3079 3079
             $filename = PATH_site . $filename;
3080 3080
         } elseif (!(
3081
-                  static::isFirstPartOfStr($filename, Environment::getProjectPath())
3081
+                    static::isFirstPartOfStr($filename, Environment::getProjectPath())
3082 3082
                   || static::isFirstPartOfStr($filename, Environment::getPublicPath())
3083 3083
                 )) {
3084 3084
             // absolute, but set to blank if not allowed
@@ -3133,7 +3133,7 @@  discard block
 block discarded – undo
3133 3133
                 static::isFirstPartOfStr($path, Environment::getProjectPath())
3134 3134
                 || static::isFirstPartOfStr($path, Environment::getPublicPath())
3135 3135
                 || $lockRootPath && static::isFirstPartOfStr($path, $lockRootPath)
3136
-               );
3136
+                );
3137 3137
     }
3138 3138
 
3139 3139
     /**
Please login to merge, or discard this patch.
typo3/sysext/indexed_search/Classes/Controller/SearchController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -700,9 +700,9 @@
 block discarded – undo
700 700
                         $iconPath = PathUtility::stripPathSitePrefix($fullPath);
701 701
                         $this->iconFileNameCache[$imageType] = $imageInfo->getWidth()
702 702
                             ? '<img src="' . $iconPath
703
-                              . '" width="' . $imageInfo->getWidth()
704
-                              . '" height="' . $imageInfo->getHeight()
705
-                              . '" title="' . htmlspecialchars($alt) . '" alt="" />'
703
+                                . '" width="' . $imageInfo->getWidth()
704
+                                . '" height="' . $imageInfo->getHeight()
705
+                                . '" title="' . htmlspecialchars($alt) . '" alt="" />'
706 706
                             : '';
707 707
                     }
708 708
                 }
Please login to merge, or discard this patch.
typo3/sysext/sys_note/Classes/Domain/Repository/SysNoteRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\SysNote\Domain\Repository;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/sys_note/Classes/Controller/NoteController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\SysNote\Controller;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/sys_note/Classes/Hook/RecordListHook.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\SysNote\Hook;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/filelist/Classes/Configuration/ThumbnailConfiguration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace TYPO3\CMS\Filelist\Configuration;
5 5
 
Please login to merge, or discard this patch.