Test Failed
Branch master (e0e8ab)
by Tymoteusz
23:10
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 1 patch
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.
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/extbase/Classes/Configuration/AbstractConfigurationManager.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -174,10 +174,10 @@
 block discarded – undo
174 174
         if (!empty($frameworkConfiguration['persistence']['storagePid'])) {
175 175
             if (is_array($frameworkConfiguration['persistence']['storagePid'])) {
176 176
                 /**
177
-                    * We simulate the frontend to enable the use of cObjects in
178
-                    * stdWrap. Than we convert the configuration to normal TypoScript
179
-                    * and apply the stdWrap to the storagePid
180
-                    */
177
+                 * We simulate the frontend to enable the use of cObjects in
178
+                 * stdWrap. Than we convert the configuration to normal TypoScript
179
+                 * and apply the stdWrap to the storagePid
180
+                 */
181 181
                 if (!$this->environmentService->isEnvironmentInFrontendMode()) {
182 182
                     \TYPO3\CMS\Extbase\Utility\FrontendSimulatorUtility::simulateFrontendEnvironment($this->getContentObject());
183 183
                 }
Please login to merge, or discard this patch.
sysext/extbase/Classes/Property/TypeConverter/PersistentObjectConverter.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,8 +67,8 @@
 block discarded – undo
67 67
     protected $persistenceManager;
68 68
 
69 69
         /**
70
-     * @param \TYPO3\CMS\Extbase\Persistence\PersistenceManagerInterface $persistenceManager
71
-     */
70
+         * @param \TYPO3\CMS\Extbase\Persistence\PersistenceManagerInterface $persistenceManager
71
+         */
72 72
     public function injectPersistenceManager(\TYPO3\CMS\Extbase\Persistence\PersistenceManagerInterface $persistenceManager)
73 73
     {
74 74
         $this->persistenceManager = $persistenceManager;
Please login to merge, or discard this patch.
typo3/sysext/extbase/Classes/Validation/ValidatorResolver.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -459,7 +459,7 @@
 block discarded – undo
459 459
             }
460 460
         } else {
461 461
             // Full qualified
462
-             // Tx_MyExt_Validation_Validator_MyValidator or \Acme\Ext\Validation\Validator\FooValidator
462
+                // Tx_MyExt_Validation_Validator_MyValidator or \Acme\Ext\Validation\Validator\FooValidator
463 463
             $possibleClassName = $validatorName;
464 464
             if (!empty($possibleClassName) && $possibleClassName[0] === '\\') {
465 465
                 $possibleClassName = substr($possibleClassName, 1);
Please login to merge, or discard this patch.
typo3/sysext/extbase/Classes/Persistence/Generic/Query.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,6 @@
 block discarded – undo
60 60
 
61 61
     /**
62 62
      * @var \TYPO3\CMS\Extbase\Persistence\PersistenceManagerInterface
63
-
64 63
      */
65 64
     protected $persistenceManager;
66 65
 
Please login to merge, or discard this patch.