Completed
Pull Request — master (#13)
by Andreas
02:21
created
src/JUnitMerger.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,9 +42,9 @@
 block discarded – undo
42 42
 
43 43
     /**
44 44
      * @param array $array1
45
-     * @param array $array26
45
+     * @param array $array2
46 46
      *
47
-     * @return array
47
+     * @return MergeResult
48 48
      */
49 49
     public function merge(array $array1, array $array2)
50 50
     {
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
@@ -47,12 +47,12 @@
 block discarded – undo
47 47
     protected function configure()
48 48
     {
49 49
         $this->setName('compare')
50
-             ->setDescription('Compares two JUnit log files')
51
-             ->setDefinition(array(
52
-                 new InputArgument('base', InputArgument::REQUIRED, 'Base file for the comparison'),
53
-                 new InputArgument('current', InputArgument::REQUIRED, 'Current file to compare against the base file')
54
-             ))
55
-             ->setHelp('');
50
+                ->setDescription('Compares two JUnit log files')
51
+                ->setDefinition(array(
52
+                    new InputArgument('base', InputArgument::REQUIRED, 'Base file for the comparison'),
53
+                    new InputArgument('current', InputArgument::REQUIRED, 'Current file to compare against the base file')
54
+                ))
55
+                ->setHelp('');
56 56
     }
57 57
 
58 58
 
Please login to merge, or discard this patch.