Completed
Pull Request — master (#929)
by Timo
35:04
created
Classes/Backend/SolrModule/IndexMaintenanceModuleController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
123 123
 
124 124
         if ($coresReloaded) {
125 125
             $this->addFlashMessage(
126
-                'Core configuration reloaded ('.implode(', ', $reloadedCores).').',
126
+                'Core configuration reloaded (' . implode(', ', $reloadedCores) . ').',
127 127
                 '',
128 128
                 FlashMessage::OK
129 129
             );
Please login to merge, or discard this patch.
Classes/IndexQueue/FrontendHelper/PageIndexer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@
 block discarded – undo
173 173
             'auth', // service type
174 174
             AuthorizationService::class,
175 175
             // service key
176
-            [ // service meta data
176
+            [// service meta data
177 177
                 'title' => 'Solr Indexer Authorization',
178 178
                 'description' => 'Authorizes the Solr Index Queue indexer to access protected pages.',
179 179
 
Please login to merge, or discard this patch.
Classes/System/TCA/TCAService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
      */
49 49
     public function __construct($TCA = null)
50 50
     {
51
-        $this->tca = (array) (is_null($TCA) ? $GLOBALS['TCA'] : $TCA);
51
+        $this->tca = (array)(is_null($TCA) ? $GLOBALS['TCA'] : $TCA);
52 52
     }
53 53
 
54 54
     /**
Please login to merge, or discard this patch.
Classes/Typo3PageIndexer.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,6 @@
 block discarded – undo
118 118
      * Constructor
119 119
      *
120 120
      * @param TypoScriptFrontendController $page The page to index
121
-     * @param IdBuilder $variantIdBuilder;
122 121
      */
123 122
     public function __construct(TypoScriptFrontendController $page, IdBuilder $idBuilder = null)
124 123
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -322,7 +322,7 @@
 block discarded – undo
322 322
         $document->setField('pid', $pageRecord['pid']);
323 323
 
324 324
         // variantId
325
-        $variantId = $this->variantIdBuilder->buildFromTypeAndUid('pages',  $this->page->id);
325
+        $variantId = $this->variantIdBuilder->buildFromTypeAndUid('pages', $this->page->id);
326 326
         $document->setField('variantId', $variantId);
327 327
 
328 328
         $document->setField('typeNum', $this->page->type);
Please login to merge, or discard this patch.