Passed
Branch master (c0a34d)
by Timo
03:39
created
Classes/IndexQueue/Queue.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -856,7 +856,7 @@
 block discarded – undo
856 856
      * Marks an item as failed and causes the indexer to skip the item in the
857 857
      * next run.
858 858
      *
859
-     * @param int|Item $item Either the item's Index Queue
859
+     * @param Item $item Either the item's Index Queue
860 860
      *      uid or the complete item
861 861
      * @param string $errorMessage Error message
862 862
      */
Please login to merge, or discard this patch.
Classes/Plugin/PluginBase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -438,7 +438,7 @@
 block discarded – undo
438 438
      * This method executes the requested commands and applies the changes to
439 439
      * the template.
440 440
      *
441
-     * @param $actionResult
441
+     * @param string $actionResult
442 442
      * @return string Rendered plugin content
443 443
      */
444 444
     abstract protected function render($actionResult);
Please login to merge, or discard this patch.
Classes/Plugin/Results/NoResultsCommand.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
     /**
81 81
      * Constructs label markers.
82 82
      *
83
-     * @return array Array of label markers.
83
+     * @return string Array of label markers.
84 84
      */
85 85
     protected function getLabelMarkers()
86 86
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
         $markers = $this->getLabelMarkers();
65 65
 
66 66
         if ($this->parentPlugin->typoScriptConfiguration->getSearchSpellcheckingSearchUsingSpellCheckerSuggestion()) {
67
-            $suggestionResults =  $this->getSuggestionResults();
67
+            $suggestionResults = $this->getSuggestionResults();
68 68
             $markers['suggestion_results'] = $suggestionResults;
69 69
             $markers['has_suggestion_results'] = trim($suggestionResults) !== '';
70 70
         }
Please login to merge, or discard this patch.
Classes/Query.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -941,7 +941,7 @@
 block discarded – undo
941 941
     /**
942 942
      * Sets the fields to return by a query.
943 943
      *
944
-     * @param array|string $fieldList an array or comma-separated list of field names
944
+     * @param string $fieldList an array or comma-separated list of field names
945 945
      * @throws \UnexpectedValueException on parameters other than comma-separated lists and arrays
946 946
      */
947 947
     public function setFieldList($fieldList = array('*', 'score'))
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@
 block discarded – undo
157 157
      */
158 158
     public function __construct($keywords, $solrConfiguration = null)
159 159
     {
160
-        $keywords = (string) $keywords;
160
+        $keywords = (string)$keywords;
161 161
         if ($solrConfiguration == null) {
162 162
             $this->solrConfiguration = Util::getSolrConfiguration();
163 163
         } else {
Please login to merge, or discard this patch.
Classes/Query/FilterEncoder/DateRange.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,6 @@
 block discarded – undo
48 48
      * Parses the given date range from a GET parameter and returns a Solr
49 49
      * date range filter.
50 50
      *
51
-     * @param string $rangeFilter The range filter query string from the query URL
52 51
      * @param array $configuration Facet configuration
53 52
      * @return string Lucene query language filter to be used for querying Solr
54 53
      */
Please login to merge, or discard this patch.
Classes/System/Configuration/ConfigurationManager.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
      * path that is used in in the current context.
59 59
      *
60 60
      * @param array $configurationArray
61
-     * @param null $contextPageId
61
+     * @param integer $contextPageId
62 62
      * @param int $contextLanguageId
63 63
      * @param string $contextTypoScriptPath
64 64
      * @return TypoScriptConfiguration
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
             }
72 72
         }
73 73
 
74
-        if (! is_array($configurationArray)) {
74
+        if (!is_array($configurationArray)) {
75 75
             $configurationArray = array();
76 76
         }
77 77
 
Please login to merge, or discard this patch.
Classes/System/Configuration/TypoScriptConfiguration.php 3 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -544,7 +544,7 @@  discard block
 block discarded – undo
544 544
      *
545 545
      * @param string $configurationName
546 546
      * @param string $defaultIfEmpty
547
-     * @return mixed
547
+     * @return string
548 548
      */
549 549
     public function getIndexQueueInitializerClassByConfigurationName($configurationName, $defaultIfEmpty = 'ApacheSolrForTypo3\\Solr\\IndexQueue\\Initializer\\Record')
550 550
     {
@@ -1237,7 +1237,7 @@  discard block
 block discarded – undo
1237 1237
      * plugin.tx_solr.search.query.allowEmptyQuery
1238 1238
      *
1239 1239
      * @param string $defaultIfEmpty
1240
-     * @return string
1240
+     * @return boolean
1241 1241
      */
1242 1242
     public function getSearchQueryAllowEmptyQuery($defaultIfEmpty = '')
1243 1243
     {
@@ -1299,7 +1299,7 @@  discard block
 block discarded – undo
1299 1299
      *
1300 1300
      * plugin.tx_solr.search.query.returnFields
1301 1301
      *
1302
-     * @param array $defaultIfEmpty
1302
+     * @param string[] $defaultIfEmpty
1303 1303
      * @return array
1304 1304
      */
1305 1305
     public function getSearchQueryReturnFieldsAsArray($defaultIfEmpty = array())
Please login to merge, or discard this 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.
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -255,8 +255,8 @@  discard block
 block discarded – undo
255 255
      */
256 256
     public function getCssFileByFileKey($fileKey, $defaultIfEmpty = '')
257 257
     {
258
-        $cssFileName =  $this->getValueByPathOrDefaultValue('plugin.tx_solr.cssFiles.' . $fileKey, $defaultIfEmpty);
259
-        return (string) $cssFileName;
258
+        $cssFileName = $this->getValueByPathOrDefaultValue('plugin.tx_solr.cssFiles.' . $fileKey, $defaultIfEmpty);
259
+        return (string)$cssFileName;
260 260
     }
261 261
 
262 262
     /**
@@ -565,8 +565,8 @@  discard block
 block discarded – undo
565 565
      */
566 566
     public function getJavaScriptFileByFileKey($fileKey, $defaultIfEmpty = '')
567 567
     {
568
-        $javaScriptFileName =  $this->getValueByPathOrDefaultValue('plugin.tx_solr.javascriptFiles.' . $fileKey, $defaultIfEmpty);
569
-        return (string) $javaScriptFileName;
568
+        $javaScriptFileName = $this->getValueByPathOrDefaultValue('plugin.tx_solr.javascriptFiles.' . $fileKey, $defaultIfEmpty);
569
+        return (string)$javaScriptFileName;
570 570
     }
571 571
 
572 572
     /**
@@ -579,8 +579,8 @@  discard block
 block discarded – undo
579 579
      */
580 580
     public function getJavaScriptLoadIn($defaultIfEmpty = 'footer')
581 581
     {
582
-        $loadIn =  $this->getValueByPathOrDefaultValue('plugin.tx_solr.javascriptFiles.loadIn', $defaultIfEmpty);
583
-        return (string) $loadIn;
582
+        $loadIn = $this->getValueByPathOrDefaultValue('plugin.tx_solr.javascriptFiles.loadIn', $defaultIfEmpty);
583
+        return (string)$loadIn;
584 584
     }
585 585
 
586 586
     /**
@@ -927,7 +927,7 @@  discard block
 block discarded – undo
927 927
     public function getSearchVariantsLimit($defaultIfEmpty = 10)
928 928
     {
929 929
         $result = $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.variants.limit', $defaultIfEmpty);
930
-        return (int) $result;
930
+        return (int)$result;
931 931
     }
932 932
 
933 933
     /**
@@ -969,7 +969,7 @@  discard block
 block discarded – undo
969 969
     public function getSearchFrequentSearchesMinSize($defaultIfEmpty = 14)
970 970
     {
971 971
         $result = $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.frequentSearches.minSize', $defaultIfEmpty);
972
-        return (int) $result;
972
+        return (int)$result;
973 973
     }
974 974
 
975 975
     /**
@@ -983,7 +983,7 @@  discard block
 block discarded – undo
983 983
     public function getSearchFrequentSearchesMaxSize($defaultIfEmpty = 32)
984 984
     {
985 985
         $result = $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.frequentSearches.maxSize', $defaultIfEmpty);
986
-        return (int) $result;
986
+        return (int)$result;
987 987
     }
988 988
 
989 989
     /**
@@ -1025,7 +1025,7 @@  discard block
 block discarded – undo
1025 1025
     public function getSearchInitializeWithQuery($defaultIfEmpty = '')
1026 1026
     {
1027 1027
         $result = $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.initializeWithQuery', $defaultIfEmpty);
1028
-        return (string) $result;
1028
+        return (string)$result;
1029 1029
     }
1030 1030
 
1031 1031
     /**
@@ -1053,7 +1053,7 @@  discard block
 block discarded – undo
1053 1053
     public function getSearchLastSearchesMode($defaultIfEmpty = 'user')
1054 1054
     {
1055 1055
         $result = $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.lastSearches.mode', $defaultIfEmpty);
1056
-        return (string) $result;
1056
+        return (string)$result;
1057 1057
     }
1058 1058
 
1059 1059
     /**
@@ -1067,7 +1067,7 @@  discard block
 block discarded – undo
1067 1067
     public function getSearchLastSearchesLimit($defaultIfEmpty = 10)
1068 1068
     {
1069 1069
         $result = $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.lastSearches.limit', $defaultIfEmpty);
1070
-        return (int) $result;
1070
+        return (int)$result;
1071 1071
     }
1072 1072
 
1073 1073
     /**
@@ -1321,7 +1321,7 @@  discard block
 block discarded – undo
1321 1321
      */
1322 1322
     public function getSearchTargetPage()
1323 1323
     {
1324
-        $targetPage = (int) $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.targetPage', 0);
1324
+        $targetPage = (int)$this->getValueByPathOrDefaultValue('plugin.tx_solr.search.targetPage', 0);
1325 1325
         if ($targetPage === 0) {
1326 1326
             // when no specific page was configured we use the contextPageId (which is usual $GLOBALS['TSFE']->id)
1327 1327
             $targetPage = $this->contextPageId;
@@ -1414,7 +1414,7 @@  discard block
 block discarded – undo
1414 1414
      */
1415 1415
     public function getSearchResultsPerPage($defaultIfEmpty = 10)
1416 1416
     {
1417
-        return (int) $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.results.resultsPerPage', $defaultIfEmpty);
1417
+        return (int)$this->getValueByPathOrDefaultValue('plugin.tx_solr.search.results.resultsPerPage', $defaultIfEmpty);
1418 1418
     }
1419 1419
 
1420 1420
     /**
@@ -1459,7 +1459,7 @@  discard block
 block discarded – undo
1459 1459
      */
1460 1460
     public function getSearchSpellchecking($defaultIfEmpty = false)
1461 1461
     {
1462
-        $isFacetingEnabled =  $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.spellchecking', $defaultIfEmpty);
1462
+        $isFacetingEnabled = $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.spellchecking', $defaultIfEmpty);
1463 1463
         return $this->getBool($isFacetingEnabled);
1464 1464
     }
1465 1465
 
@@ -1473,7 +1473,7 @@  discard block
 block discarded – undo
1473 1473
      */
1474 1474
     public function getSearchSpellcheckingWrap($defaultIfEmpty = '')
1475 1475
     {
1476
-        return (string) $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.spellchecking.wrap', $defaultIfEmpty);
1476
+        return (string)$this->getValueByPathOrDefaultValue('plugin.tx_solr.search.spellchecking.wrap', $defaultIfEmpty);
1477 1477
     }
1478 1478
 
1479 1479
     /**
@@ -1486,7 +1486,7 @@  discard block
 block discarded – undo
1486 1486
      */
1487 1487
     public function getSearchSpellcheckingNumberOfSuggestionsToTry($defaultIfEmpty = 0)
1488 1488
     {
1489
-        return (int) $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.spellchecking.numberOfSuggestionsToTry', $defaultIfEmpty);
1489
+        return (int)$this->getValueByPathOrDefaultValue('plugin.tx_solr.search.spellchecking.numberOfSuggestionsToTry', $defaultIfEmpty);
1490 1490
     }
1491 1491
 
1492 1492
     /**
@@ -1513,7 +1513,7 @@  discard block
 block discarded – undo
1513 1513
      */
1514 1514
     public function getSearchFaceting($defaultIfEmpty = false)
1515 1515
     {
1516
-        $isFacetingEnabled =  $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.faceting', $defaultIfEmpty);
1516
+        $isFacetingEnabled = $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.faceting', $defaultIfEmpty);
1517 1517
         return $this->getBool($isFacetingEnabled);
1518 1518
     }
1519 1519
 
@@ -1559,7 +1559,7 @@  discard block
 block discarded – undo
1559 1559
      */
1560 1560
     public function getSearchFacetingRemoveFacetLinkText($defaultIfEmpty = '@facetLabel: @facetText')
1561 1561
     {
1562
-        return (string) $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.faceting.removeFacetLinkText', $defaultIfEmpty);
1562
+        return (string)$this->getValueByPathOrDefaultValue('plugin.tx_solr.search.faceting.removeFacetLinkText', $defaultIfEmpty);
1563 1563
     }
1564 1564
 
1565 1565
     /**
@@ -1603,7 +1603,7 @@  discard block
 block discarded – undo
1603 1603
      */
1604 1604
     public function getSearchFacetingShowAllLinkWrap($defaultIfEmpty = '')
1605 1605
     {
1606
-        return (string) $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.faceting.showAllLink.wrap', $defaultIfEmpty);
1606
+        return (string)$this->getValueByPathOrDefaultValue('plugin.tx_solr.search.faceting.showAllLink.wrap', $defaultIfEmpty);
1607 1607
     }
1608 1608
 
1609 1609
     /**
@@ -1631,7 +1631,7 @@  discard block
 block discarded – undo
1631 1631
      */
1632 1632
     public function getSearchFacetingFacetLinkUrlParametersUseForFacetResetLinkUrl($defaultIfEmpty = true)
1633 1633
     {
1634
-        $useForFacetResetLinkUrl =  $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.faceting.facetLinkUrlParameters.useForFacetResetLinkUrl', $defaultIfEmpty);
1634
+        $useForFacetResetLinkUrl = $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.faceting.facetLinkUrlParameters.useForFacetResetLinkUrl', $defaultIfEmpty);
1635 1635
         return $this->getBool($useForFacetResetLinkUrl);
1636 1636
     }
1637 1637
 
@@ -1663,7 +1663,7 @@  discard block
 block discarded – undo
1663 1663
      */
1664 1664
     public function getSearchFacetingMinimumCount($defaultIfEmpty = 1)
1665 1665
     {
1666
-        return (int) $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.faceting.minimumCount', $defaultIfEmpty);
1666
+        return (int)$this->getValueByPathOrDefaultValue('plugin.tx_solr.search.faceting.minimumCount', $defaultIfEmpty);
1667 1667
     }
1668 1668
 
1669 1669
     /**
@@ -1676,7 +1676,7 @@  discard block
 block discarded – undo
1676 1676
      */
1677 1677
     public function getSearchFacetingLimit($defaultIfEmpty = 10)
1678 1678
     {
1679
-        return (int) $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.faceting.limit', $defaultIfEmpty);
1679
+        return (int)$this->getValueByPathOrDefaultValue('plugin.tx_solr.search.faceting.limit', $defaultIfEmpty);
1680 1680
     }
1681 1681
 
1682 1682
     /**
@@ -1689,7 +1689,7 @@  discard block
 block discarded – undo
1689 1689
      */
1690 1690
     public function getSearchFacetingSingleFacetMode($defaultIfEmpty = false)
1691 1691
     {
1692
-        $singleFacetMode =  $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.faceting.singleFacetMode', $defaultIfEmpty);
1692
+        $singleFacetMode = $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.faceting.singleFacetMode', $defaultIfEmpty);
1693 1693
         return $this->getBool($singleFacetMode);
1694 1694
     }
1695 1695
 
@@ -1719,7 +1719,7 @@  discard block
 block discarded – undo
1719 1719
      */
1720 1720
     public function getSearchFacetingKeepAllFacetsOnSelection($defaultIfEmpty = false)
1721 1721
     {
1722
-        $keepAllOptionsOnSelection =  $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.faceting.keepAllFacetsOnSelection', $defaultIfEmpty);
1722
+        $keepAllOptionsOnSelection = $this->getValueByPathOrDefaultValue('plugin.tx_solr.search.faceting.keepAllFacetsOnSelection', $defaultIfEmpty);
1723 1723
         return $this->getBool($keepAllOptionsOnSelection);
1724 1724
     }
1725 1725
 
@@ -1761,7 +1761,7 @@  discard block
 block discarded – undo
1761 1761
      */
1762 1762
     public function getStatistics($defaultIfEmpty = false)
1763 1763
     {
1764
-        $isFacetingEnabled =  $this->getValueByPathOrDefaultValue('plugin.tx_solr.statistics', $defaultIfEmpty);
1764
+        $isFacetingEnabled = $this->getValueByPathOrDefaultValue('plugin.tx_solr.statistics', $defaultIfEmpty);
1765 1765
         return $this->getBool($isFacetingEnabled);
1766 1766
     }
1767 1767
 
@@ -1777,8 +1777,8 @@  discard block
 block discarded – undo
1777 1777
      */
1778 1778
     public function getStatisticsAnonymizeIP($defaultIfEmpty = 0)
1779 1779
     {
1780
-        $anomizeToLength =  $this->getValueByPathOrDefaultValue('plugin.tx_solr.statistics.anonymizeIP', $defaultIfEmpty);
1781
-        return (int) $anomizeToLength;
1780
+        $anomizeToLength = $this->getValueByPathOrDefaultValue('plugin.tx_solr.statistics.anonymizeIP', $defaultIfEmpty);
1781
+        return (int)$anomizeToLength;
1782 1782
     }
1783 1783
 
1784 1784
     /**
@@ -1791,7 +1791,7 @@  discard block
 block discarded – undo
1791 1791
      */
1792 1792
     public function getSuggest($defaultIfEmpty = false)
1793 1793
     {
1794
-        $isSuggestionEnabled =  $this->getValueByPathOrDefaultValue('plugin.tx_solr.suggest', $defaultIfEmpty);
1794
+        $isSuggestionEnabled = $this->getValueByPathOrDefaultValue('plugin.tx_solr.suggest', $defaultIfEmpty);
1795 1795
         return $this->getBool($isSuggestionEnabled);
1796 1796
     }
1797 1797
 
@@ -1805,7 +1805,7 @@  discard block
 block discarded – undo
1805 1805
      */
1806 1806
     public function getSuggestForceHttps($defaultIfEmpty = false)
1807 1807
     {
1808
-        $isHttpsForced =  $this->getValueByPathOrDefaultValue('plugin.tx_solr.suggest.forceHttps', $defaultIfEmpty);
1808
+        $isHttpsForced = $this->getValueByPathOrDefaultValue('plugin.tx_solr.suggest.forceHttps', $defaultIfEmpty);
1809 1809
         return $this->getBool($isHttpsForced);
1810 1810
     }
1811 1811
 
@@ -1821,8 +1821,8 @@  discard block
 block discarded – undo
1821 1821
      */
1822 1822
     public function getTemplateByFileKey($fileKey, $defaultIfEmpty = '')
1823 1823
     {
1824
-        $templateFileName =  $this->getValueByPathOrDefaultValue('plugin.tx_solr.templateFiles.' . $fileKey, $defaultIfEmpty);
1825
-        return (string) $templateFileName;
1824
+        $templateFileName = $this->getValueByPathOrDefaultValue('plugin.tx_solr.templateFiles.' . $fileKey, $defaultIfEmpty);
1825
+        return (string)$templateFileName;
1826 1826
     }
1827 1827
 
1828 1828
     /**
@@ -1835,7 +1835,7 @@  discard block
 block discarded – undo
1835 1835
      */
1836 1836
     public function getViewHelpersCropConfiguration(array $defaultIfEmpty = array())
1837 1837
     {
1838
-        $cropViewHelperConfiguration =  $this->getObjectByPathOrDefault('plugin.tx_solr.viewHelpers.crop.', $defaultIfEmpty);
1838
+        $cropViewHelperConfiguration = $this->getObjectByPathOrDefault('plugin.tx_solr.viewHelpers.crop.', $defaultIfEmpty);
1839 1839
         return $cropViewHelperConfiguration;
1840 1840
     }
1841 1841
 
@@ -1849,7 +1849,7 @@  discard block
 block discarded – undo
1849 1849
      */
1850 1850
     public function getViewHelpersSortIndicatorConfiguration(array $defaultIfEmpty = array())
1851 1851
     {
1852
-        $sortingViewHelperConfiguration =  $this->getObjectByPathOrDefault('plugin.tx_solr.viewHelpers.sortIndicator.', $defaultIfEmpty);
1852
+        $sortingViewHelperConfiguration = $this->getObjectByPathOrDefault('plugin.tx_solr.viewHelpers.sortIndicator.', $defaultIfEmpty);
1853 1853
         return $sortingViewHelperConfiguration;
1854 1854
     }
1855 1855
 }
Please login to merge, or discard this patch.
Classes/Task/IndexQueueWorkerTask.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@
 block discarded – undo
186 186
     }
187 187
 
188 188
     /**
189
-     * @return mixed
189
+     * @return integer
190 190
      */
191 191
     public function getDocumentsToIndexLimit()
192 192
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@
 block discarded – undo
145 145
             $message .= ' Failures: ' . $failedItemsCount;
146 146
         }
147 147
 
148
-        $message .=  ' / Using webroot: ' . htmlspecialchars($this->getWebRoot());
148
+        $message .= ' / Using webroot: ' . htmlspecialchars($this->getWebRoot());
149 149
 
150 150
         return $message;
151 151
     }
Please login to merge, or discard this patch.
Classes/Template.php 2 patches
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,6 +130,7 @@  discard block
 block discarded – undo
130 130
     /**
131 131
      * Finds the view helpers in the template and loads them.
132 132
      *
133
+     * @param string $content
133 134
      * @return void
134 135
      */
135 136
     protected function initializeViewHelpers($content)
@@ -1158,7 +1159,7 @@  discard block
 block discarded – undo
1158 1159
     }
1159 1160
 
1160 1161
     /**
1161
-     * @param $templateContent
1162
+     * @param string $templateContent
1162 1163
      * @return mixed
1163 1164
      */
1164 1165
     public function setTemplateContent($templateContent)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -218,7 +218,7 @@
 block discarded – undo
218 218
             $ucHelperKey = Util::underscoredToUpperCamelCase($helperKey);
219 219
             $vendorNameSpace = 'ApacheSolrForTypo3\\Solr\\';
220 220
             $possibleFilename = $ucHelperKey . '.php';
221
-            $possibleClassName =  $vendorNameSpace . str_replace('/', '\\',
221
+            $possibleClassName = $vendorNameSpace . str_replace('/', '\\',
222 222
                     $viewHelperRealPath) . '\\' . $ucHelperKey;
223 223
 
224 224
             $viewHelperIncludePath = ExtensionManagementUtility::extPath($extensionKey)
Please login to merge, or discard this patch.