Passed
Push — master ( efbfe4...f2d6e9 )
by Timo
23:10
created
Classes/Domain/Search/ResultSet/SearchResultSetService.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -38,9 +38,7 @@
 block discarded – undo
38 38
 use ApacheSolrForTypo3\Solr\Search\SearchComponentManager;
39 39
 use ApacheSolrForTypo3\Solr\System\Configuration\TypoScriptConfiguration;
40 40
 use ApacheSolrForTypo3\Solr\System\Logging\SolrLogManager;
41
-use ApacheSolrForTypo3\Solr\System\Solr\SolrCommunicationException;
42 41
 use ApacheSolrForTypo3\Solr\System\Solr\SolrIncompleteResponseException;
43
-use ApacheSolrForTypo3\Solr\System\Solr\SolrInternalServerErrorException;
44 42
 use TYPO3\CMS\Core\Utility\GeneralUtility;
45 43
 use TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer;
46 44
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -361,7 +361,7 @@
 block discarded – undo
361 361
     protected function doASearch($query, $offSet)
362 362
     {
363 363
         $response = $this->search->search($query, $offSet, null);
364
-        if($response === null) {
364
+        if ($response === null) {
365 365
             throw new SolrIncompleteResponseException('The response retrieved from solr was incomplete', 1505989678);
366 366
         }
367 367
 
Please login to merge, or discard this patch.