Passed
Branch master (311f62)
by Christian
15:56
created
typo3/sysext/setup/Classes/Controller/SetupModuleController.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -785,11 +785,11 @@
 block discarded – undo
785 785
         }
786 786
 
787 787
         return '<div class="form-inline"><div class="form-group"><p>'
788
-             . '<label for="field_simulate" style="margin-right: 20px;">'
789
-             . htmlspecialchars($this->getLanguageService()->sL('LLL:EXT:setup/Resources/Private/Language/locallang.xlf:simulate'))
790
-             . '</label>'
791
-             . $this->simulateSelector
792
-             . '</p></div></div>';
788
+                . '<label for="field_simulate" style="margin-right: 20px;">'
789
+                . htmlspecialchars($this->getLanguageService()->sL('LLL:EXT:setup/Resources/Private/Language/locallang.xlf:simulate'))
790
+                . '</label>'
791
+                . $this->simulateSelector
792
+                . '</p></div></div>';
793 793
     }
794 794
 
795 795
     /**
Please login to merge, or discard this patch.
sysext/indexed_search/Classes/Domain/Repository/IndexSearchRepository.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -605,10 +605,10 @@
 block discarded – undo
605 605
                 case '10':
606 606
                     // Sounds like
607 607
                     /**
608
-                    * Indexer object
609
-                    *
610
-                    * @var Indexer
611
-                    */
608
+                     * Indexer object
609
+                     *
610
+                     * @var Indexer
611
+                     */
612 612
                     $indexerObj = GeneralUtility::makeInstance(Indexer::class);
613 613
                     // Perform metaphone search
614 614
                     $storeMetaphoneInfoAsWords = !$this->isTableUsed('index_words');
Please login to merge, or discard this patch.
typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4647,7 +4647,7 @@
 block discarded – undo
4647 4647
      *
4648 4648
      * @param int $targetPid Target page id
4649 4649
      * @return mixed Return domain data or NULL
4650
-    */
4650
+     */
4651 4651
     public function getDomainDataForPid($targetPid)
4652 4652
     {
4653 4653
         // Using array_key_exists() here, nice $result can be NULL
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2832,7 +2832,7 @@
 block discarded – undo
2832 2832
         $tempCommaReplacementString = '###KASPER###';
2833 2833
 
2834 2834
         // replace every "," wrapped in "()" by a "unique" string
2835
-        $string = preg_replace_callback('/\((?>[^()]|(?R))*\)/', function ($result) use ($tempCommaReplacementString) {
2835
+        $string = preg_replace_callback('/\((?>[^()]|(?R))*\)/', function($result) use ($tempCommaReplacementString) {
2836 2836
             return str_replace(',', $tempCommaReplacementString, $result[0]);
2837 2837
         }, $string);
2838 2838
 
Please login to merge, or discard this patch.
sysext/frontend/Classes/ContentObject/Menu/AbstractMenuContentObject.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -512,8 +512,8 @@
 block discarded – undo
512 512
     }
513 513
 
514 514
     /**
515
-    * @return string The HTML for the menu
516
-    */
515
+     * @return string The HTML for the menu
516
+     */
517 517
     public function writeMenu()
518 518
     {
519 519
         return '';
Please login to merge, or discard this patch.
typo3/sysext/extbase/Classes/Domain/Model/FileReference.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -22,11 +22,11 @@
 block discarded – undo
22 22
 class FileReference extends \TYPO3\CMS\Extbase\Domain\Model\AbstractFileFolder
23 23
 {
24 24
     /**
25
-      * Uid of the referenced sys_file. Needed for extbase to serialize the
26
-      * reference correctly.
27
-      *
28
-      * @var int
29
-      */
25
+     * Uid of the referenced sys_file. Needed for extbase to serialize the
26
+     * reference correctly.
27
+     *
28
+     * @var int
29
+     */
30 30
     protected $uidLocal;
31 31
 
32 32
     /**
Please login to merge, or discard this patch.
typo3/sysext/recordlist/Classes/Browser/FileBrowser.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,8 @@
 block discarded – undo
57 57
     protected $elements = [];
58 58
 
59 59
     /**
60
-    * @var string
61
-    */
60
+     * @var string
61
+     */
62 62
     protected $searchWord;
63 63
 
64 64
     /**
Please login to merge, or discard this patch.
typo3/sysext/reports/Classes/ViewHelpers/IconViewHelper.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
         }
80 80
 
81 81
         return '<img src="' . htmlspecialchars(PathUtility::getAbsoluteWebPath($icon))
82
-               . '" width="16" height="16" title="' . htmlspecialchars($title)
83
-               . '" alt="' . htmlspecialchars($title) . '" />';
82
+                . '" width="16" height="16" title="' . htmlspecialchars($title)
83
+                . '" alt="' . htmlspecialchars($title) . '" />';
84 84
     }
85 85
 }
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Imaging/GraphicalFunctions.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2597,10 +2597,10 @@
 block discarded – undo
2597 2597
         $this->imageMagickExec($mask, $theMask, '-colorspace GRAY +matte');
2598 2598
 
2599 2599
         $parameters = '-compose over +matte '
2600
-                      . CommandUtility::escapeShellArgument($input) . ' '
2601
-                      . CommandUtility::escapeShellArgument($overlay) . ' '
2602
-                      . CommandUtility::escapeShellArgument($theMask) . ' '
2603
-                      . CommandUtility::escapeShellArgument($output);
2600
+                        . CommandUtility::escapeShellArgument($input) . ' '
2601
+                        . CommandUtility::escapeShellArgument($overlay) . ' '
2602
+                        . CommandUtility::escapeShellArgument($theMask) . ' '
2603
+                        . CommandUtility::escapeShellArgument($output);
2604 2604
         $cmd = CommandUtility::imageMagickCommand('combine', $parameters);
2605 2605
         $this->IM_commands[] = [$output, $cmd];
2606 2606
         $ret = CommandUtility::exec($cmd);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2567,7 +2567,7 @@
 block discarded – undo
2567 2567
         }
2568 2568
         // If addFrameSelection is set in the Install Tool, a frame number is added to
2569 2569
         // select a specific page of the image (by default this will be the first page)
2570
-        $frame  = $this->addFrameSelection ? '[' . (int)$frame . ']' : '';
2570
+        $frame = $this->addFrameSelection ? '[' . (int)$frame . ']' : '';
2571 2571
         $cmd = CommandUtility::imageMagickCommand('convert', $params . ' ' . CommandUtility::escapeShellArgument($input . $frame) . ' ' . CommandUtility::escapeShellArgument($output));
2572 2572
         $this->IM_commands[] = [$output, $cmd];
2573 2573
         $ret = CommandUtility::exec($cmd);
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Resource/ResourceStorage.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -1234,7 +1234,6 @@
 block discarded – undo
1234 1234
 
1235 1235
     /**
1236 1236
      * Creates a (cryptographic) hash for a fileIdentifier.
1237
-
1238 1237
      * @param string $fileIdentifier
1239 1238
      * @param string $hash
1240 1239
      *
Please login to merge, or discard this patch.