Passed
Branch master (c0a34d)
by Timo
03:39
created
Classes/Controller/AdministrationController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -169,10 +169,10 @@
 block discarded – undo
169 169
     {
170 170
     }
171 171
 
172
-     /**
173
-     * Call a sub-module's controller
174
-     *
175
-     */
172
+        /**
173
+         * Call a sub-module's controller
174
+         *
175
+         */
176 176
     protected function invokeModuleController()
177 177
     {
178 178
         $activeModuleDescription = $this->moduleManager->getModuleDescription($this->activeModuleName);
Please login to merge, or discard this patch.
Classes/System/Util/ArrayAccessor.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -165,10 +165,10 @@
 block discarded – undo
165 165
             // direct access for small paths
166 166
             case 1:
167 167
                $this->data[$pathArray[0]] = $value;
168
-               return;
168
+                return;
169 169
             case 2:
170 170
                $this->data[$pathArray[0]][$pathArray[1]] = $value;
171
-               return;
171
+                return;
172 172
             default:
173 173
                $this->setDeepElementWithLoop($pathArray, $value);
174 174
         }
Please login to merge, or discard this patch.
Classes/System/Configuration/TypoScriptConfiguration.php 1 patch
Indentation   -3 removed lines patch added patch discarded remove patch
@@ -767,7 +767,6 @@  discard block
 block discarded – undo
767 767
      * Returns if a log message should be written when a page was indexed.
768 768
      *
769 769
      * plugin.tx_solr.logging.indexing.pageIndexed
770
-
771 770
      * @param bool $defaultIfEmpty
772 771
      * @return bool
773 772
      */
@@ -781,7 +780,6 @@  discard block
 block discarded – undo
781 780
      * Returns if a log message should be written when the TYPO3 search markers are missing in the page.
782 781
      *
783 782
      * plugin.tx_solr.logging.indexing.missingTypo3SearchMarkers
784
-
785 783
      * @param bool $defaultIfEmpty
786 784
      * @return bool
787 785
      */
@@ -809,7 +807,6 @@  discard block
 block discarded – undo
809 807
      * Indicates if the debug mode is enabled or not.
810 808
      *
811 809
      * plugin.tx_solr.enableDebugMode
812
-
813 810
      * @param bool $defaultIfEmpty
814 811
      * @return bool
815 812
      */
Please login to merge, or discard this patch.
Classes/SuggestQuery.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,9 +39,9 @@
 block discarded – undo
39 39
      */
40 40
     protected $configuration;
41 41
 
42
-     /**
43
-     * @var string
44
-     */
42
+        /**
43
+         * @var string
44
+         */
45 45
     protected $prefix;
46 46
 
47 47
     /**
Please login to merge, or discard this patch.