Completed
Pull Request — master (#32)
by
unknown
05:51
created
src/Command/DiffCommand.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -41,12 +41,12 @@
 block discarded – undo
41 41
     protected function configure()
42 42
     {
43 43
         $this->setName('diff')
44
-             ->setDescription('Shows a diff between two JUnit log files')
45
-             ->setDefinition([
46
-                 new InputOption('input1', '1', InputOption::VALUE_REQUIRED, 'First input file'),
47
-                 new InputOption('input2', '2', InputOption::VALUE_REQUIRED, 'Second input file')
48
-             ])
49
-             ->setHelp('');
44
+                ->setDescription('Shows a diff between two JUnit log files')
45
+                ->setDefinition([
46
+                    new InputOption('input1', '1', InputOption::VALUE_REQUIRED, 'First input file'),
47
+                    new InputOption('input2', '2', InputOption::VALUE_REQUIRED, 'Second input file')
48
+                ])
49
+                ->setHelp('');
50 50
     }
51 51
 
52 52
 
Please login to merge, or discard this patch.
src/Command/CompareCommand.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -49,12 +49,12 @@
 block discarded – undo
49 49
     protected function configure()
50 50
     {
51 51
         $this->setName('compare')
52
-             ->setDescription('Compares two JUnit log files')
53
-             ->setDefinition([
54
-                 new InputArgument('base', InputArgument::REQUIRED, 'Base file for the comparison'),
55
-                 new InputArgument('current', InputArgument::REQUIRED, 'Current file to compare against the base file')
56
-             ])
57
-             ->setHelp('');
52
+                ->setDescription('Compares two JUnit log files')
53
+                ->setDefinition([
54
+                    new InputArgument('base', InputArgument::REQUIRED, 'Base file for the comparison'),
55
+                    new InputArgument('current', InputArgument::REQUIRED, 'Current file to compare against the base file')
56
+                ])
57
+                ->setHelp('');
58 58
     }
59 59
 
60 60
 
Please login to merge, or discard this patch.