Completed
Branch develop (c60de3)
by Susi
05:40
created
Classes/Commands/BaseCommand.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
 
4 4
 namespace T3G\Elasticorn\Commands;
5 5
 
Please login to merge, or discard this patch.
Classes/Utility/ConfigurationParser.php 2 patches
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
 
4 4
 namespace T3G\Elasticorn\Utility;
5 5
 
Please login to merge, or discard this 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/IndexService.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
 
4 4
 namespace T3G\Elasticorn\Service;
5 5
 
Please login to merge, or discard this patch.
Classes/Commands/Index/CornifyCommand.php 1 patch
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.