Completed
Push — develop ( 494a94...48731f )
by Frank
06:23
created
Classes/Commands/Index/CornifyCommand.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     /**
65 65
      * @param \Symfony\Component\Console\Input\InputInterface $input
66 66
      * @param \Symfony\Component\Console\Output\OutputInterface $output
67
-     * @param $helper
67
+     * @param \Symfony\Component\Console\Helper\HelperInterface $helper
68 68
      * @param $indexName
69 69
      * @return bool
70 70
      */
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     /**
83 83
      * @param \Symfony\Component\Console\Input\InputInterface $input
84 84
      * @param \Symfony\Component\Console\Output\OutputInterface $output
85
-     * @param $helper
85
+     * @param \Symfony\Component\Console\Helper\HelperInterface $helper
86 86
      * @return bool
87 87
      */
88 88
     private function compareConfiguration(InputInterface $input, OutputInterface $output, $helper, $indexName)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace T3G\Elasticorn\Commands\Index;
4 4
 
5 5
 
Please login to merge, or discard this patch.
Classes/Utility/ConfigurationParser.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,6 @@
 block discarded – undo
31 31
      * ConfigurationParser constructor.
32 32
      *
33 33
      * @param \Psr\Log\LoggerInterface $logger
34
-     * @param string                   $configPath
35 34
      */
36 35
     public function __construct(LoggerInterface $logger)
37 36
     {
Please login to merge, or discard this patch.
Classes/Service/DocumentTypeService.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,8 +59,8 @@
 block discarded – undo
59 59
                 $index = $this->client->getIndex($this->indexName . '_' . $language);
60 60
                 $this->logger->info('Removing documents of type ' . $this->typeName . ' from index ' . $index);
61 61
                 $index->getType($this->typeName)->deleteByQuery(
62
-                   new Query\MatchAll()
63
-               );
62
+                    new Query\MatchAll()
63
+                );
64 64
                 $index->refresh();
65 65
             }
66 66
 
Please login to merge, or discard this patch.
Classes/Configuration/ApplicationConfiguration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace T3G\Elasticorn\Configuration;
4 4
 
5 5
 use Symfony\Component\Yaml\Yaml;
Please login to merge, or discard this patch.
Classes/Commands/Index/InitCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace T3G\Elasticorn\Commands\Index;
4 4
 
5 5
 
Please login to merge, or discard this patch.
Classes/Commands/Self/RollbackCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace T3G\Elasticorn\Commands\Self;
4 4
 
5 5
 use Humbug\SelfUpdate\Updater;
Please login to merge, or discard this patch.
Classes/Commands/Mapping/CompareCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace T3G\Elasticorn\Commands\Mapping;
4 4
 
5 5
 
Please login to merge, or discard this patch.
Classes/Commands/Mapping/ShowCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace T3G\Elasticorn\Commands\Mapping;
4 4
 
5 5
 use Symfony\Component\Console\Input\InputArgument;
Please login to merge, or discard this patch.
Classes/Bootstrap/DependencyInjectionContainer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace T3G\Elasticorn\Bootstrap;
4 4
 
5 5
 use Elastica\Client;
Please login to merge, or discard this patch.