Completed
Pull Request — master (#944)
by Timo
27:13
created
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/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.
Classes/System/Configuration/TypoScriptConfiguration.php 1 patch
Indentation   -4 removed lines patch added patch discarded remove patch
@@ -357,7 +357,6 @@  discard block
 block discarded – undo
357 357
      * Returns an array of all additionalPageIds by index configuration name.
358 358
      *
359 359
      * plugin.tx_solr.index.queue.pages.additionalPageIds
360
-
361 360
      * @param string $configurationName
362 361
      * @param array $defaultIfEmpty
363 362
      * @return array
@@ -916,7 +915,6 @@  discard block
 block discarded – undo
916 915
      * Returns if a log message should be written when a page was indexed.
917 916
      *
918 917
      * plugin.tx_solr.logging.indexing.pageIndexed
919
-
920 918
      * @param bool $defaultIfEmpty
921 919
      * @return bool
922 920
      */
@@ -930,7 +928,6 @@  discard block
 block discarded – undo
930 928
      * Returns if a log message should be written when the TYPO3 search markers are missing in the page.
931 929
      *
932 930
      * plugin.tx_solr.logging.indexing.missingTypo3SearchMarkers
933
-
934 931
      * @param bool $defaultIfEmpty
935 932
      * @return bool
936 933
      */
@@ -958,7 +955,6 @@  discard block
 block discarded – undo
958 955
      * Indicates if the debug mode is enabled or not.
959 956
      *
960 957
      * plugin.tx_solr.enableDebugMode
961
-
962 958
      * @param bool $defaultIfEmpty
963 959
      * @return bool
964 960
      */
Please login to merge, or discard this patch.