Completed
Push — master ( aab589...178fab )
by Alessandro
12s
created
src/Paraunit/Configuration/CoverageConfiguration.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Paraunit\Configuration;
6 6
 
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         if ($input->getOption($optionName)) {
64 64
             $this->addProcessor($coverageResult, $processorClass, [
65 65
                 $this->createOutputFileDefinition($input, $optionName),
66
-                (bool) $input->getOption('ansi'),
66
+                (bool)$input->getOption('ansi'),
67 67
             ]);
68 68
         }
69 69
     }
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         if ($this->optionIsEnabled($input, $optionName)) {
79 79
             $this->addProcessor($coverageResult, $processorClass, [
80 80
                 new Reference(OutputInterface::class),
81
-                (bool) $input->getOption('ansi'),
81
+                (bool)$input->getOption('ansi'),
82 82
                 $this->createOutputFileDefinition($input, $optionName),
83 83
             ]);
84 84
         }
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
      */
125 125
     private function getOptionName(string $processorClass): string
126 126
     {
127
-        if (! \in_array(CoverageProcessorInterface::class, class_implements($processorClass), true)) {
127
+        if ( ! \in_array(CoverageProcessorInterface::class, class_implements($processorClass), true)) {
128 128
             throw new \InvalidArgumentException('Expecting FQCN of class implementing ' . CoverageProcessorInterface::class . ', got ' . $processorClass);
129 129
         }
130 130
 
Please login to merge, or discard this patch.