Completed
Pull Request — master (#926)
by
unknown
11:30
created
Classes/System/Configuration/TypoScriptConfiguration.php 1 patch
Doc Comments   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -595,7 +595,6 @@  discard block
 block discarded – undo
595 595
      *
596 596
      * plugin.tx_solr.index.queue.<configurationName>.initialPagesAdditionalWhereClause
597 597
      *
598
-     * @param string $defaultIfEmpty
599 598
      *
600 599
      * @return string
601 600
      *
@@ -675,7 +674,7 @@  discard block
 block discarded – undo
675 674
      *
676 675
      * @param string $configurationName
677 676
      * @param string $defaultIfEmpty
678
-     * @return mixed
677
+     * @return string
679 678
      */
680 679
     public function getIndexQueueInitializerClassByConfigurationName($configurationName, $defaultIfEmpty = Record::class)
681 680
     {
@@ -1501,7 +1500,7 @@  discard block
 block discarded – undo
1501 1500
      * plugin.tx_solr.search.query.allowEmptyQuery
1502 1501
      *
1503 1502
      * @param string $defaultIfEmpty
1504
-     * @return string
1503
+     * @return boolean
1505 1504
      */
1506 1505
     public function getSearchQueryAllowEmptyQuery($defaultIfEmpty = '')
1507 1506
     {
@@ -1563,7 +1562,7 @@  discard block
 block discarded – undo
1563 1562
      *
1564 1563
      * plugin.tx_solr.search.query.returnFields
1565 1564
      *
1566
-     * @param array $defaultIfEmpty
1565
+     * @param string[] $defaultIfEmpty
1567 1566
      * @return array
1568 1567
      */
1569 1568
     public function getSearchQueryReturnFieldsAsArray($defaultIfEmpty = [])
@@ -2148,7 +2147,7 @@  discard block
 block discarded – undo
2148 2147
      * plugin.tx_solr.index.enableCommits
2149 2148
      *
2150 2149
      * @param bool $defaultIfEmpty
2151
-     * @return bool
2150
+     * @return boolean|null
2152 2151
      */
2153 2152
     public function getEnableCommits($defaultIfEmpty = true)
2154 2153
     {
Please login to merge, or discard this patch.
Classes/GarbageCollector.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,6 @@
 block discarded – undo
25 25
  ***************************************************************/
26 26
 
27 27
 use ApacheSolrForTypo3\Solr\IndexQueue\Queue;
28
-use ApacheSolrForTypo3\Solr\System\Configuration\ConfigurationManager;
29 28
 use ApacheSolrForTypo3\Solr\System\TCA\TCAService;
30 29
 use TYPO3\CMS\Backend\Utility\BackendUtility;
31 30
 use TYPO3\CMS\Core\DataHandling\DataHandler;
Please login to merge, or discard this patch.
Classes/IndexQueue/RecordMonitor.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,6 @@
 block discarded – undo
27 27
 use ApacheSolrForTypo3\Solr\AbstractDataHandlerListener;
28 28
 use ApacheSolrForTypo3\Solr\Domain\Index\Queue\RecordMonitor\Helper\MountPagesUpdater;
29 29
 use ApacheSolrForTypo3\Solr\GarbageCollector;
30
-use ApacheSolrForTypo3\Solr\System\Configuration\ConfigurationManager;
31 30
 use ApacheSolrForTypo3\Solr\System\TCA\TCAService;
32 31
 use ApacheSolrForTypo3\Solr\Util;
33 32
 use TYPO3\CMS\Backend\Utility\BackendUtility;
Please login to merge, or discard this patch.
Classes/System/Configuration/ConfigurationManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
  *  This copyright notice MUST APPEAR in all copies of the script!
25 25
  ***************************************************************/
26 26
 
27
-use TYPO3\CMS\Backend\Utility\BackendUtility;
28 27
 use TYPO3\CMS\Core\SingletonInterface;
29 28
 use TYPO3\CMS\Core\Utility\GeneralUtility;
30 29
 
Please login to merge, or discard this patch.