Completed
Pull Request — master (#1627)
by Rafael
19:59
created
Classes/Domain/Index/Queue/Statistic/QueueStatisticsRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
                 $queryBuilder->getConnection()->quoteIdentifier('indexed') . ' < ' .
56 56
                 $queryBuilder->getConnection()->quoteIdentifier('changed') . ') AS pending')
57 57
             ->add('select', '(' . $queryBuilder->expr()->notLike('errors', '""') . ') AS failed', true)
58
-            ->add('select', $queryBuilder->expr()->count('*', 'count'),true)
58
+            ->add('select', $queryBuilder->expr()->count('*', 'count'), true)
59 59
             ->from($this->table)
60 60
             ->where($queryBuilder->expr()->eq('root', $queryBuilder->createNamedParameter($rootPid, \PDO::PARAM_INT)))
61 61
             ->groupBy('pending', 'failed');
Please login to merge, or discard this patch.
Classes/IndexQueue/Queue.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -535,7 +535,7 @@
 block discarded – undo
535 535
      */
536 536
     public function getStatisticsBySite(Site $site, $indexingConfigurationName = '')
537 537
     {
538
-         return $this->queueStatisticsRepository->findOneByRootPidAndOptionalIndexingConfigurationName($site->getRootPageId(), $indexingConfigurationName);
538
+            return $this->queueStatisticsRepository->findOneByRootPidAndOptionalIndexingConfigurationName($site->getRootPageId(), $indexingConfigurationName);
539 539
     }
540 540
 
541 541
     /**
Please login to merge, or discard this patch.