Passed
Push — master ( f78047...b99730 )
by Fabien
02:15
created
src/Factories/ProcessFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Churn\Factories;
4 4
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     public function createCyclomaticComplexityProcess(File $file): ChurnProcess
49 49
     {
50 50
         $php = (new PhpExecutableFinder())->find();
51
-        $script = __DIR__ . '/../../bin/CyclomaticComplexityAssessorRunner';
51
+        $script = __DIR__.'/../../bin/CyclomaticComplexityAssessorRunner';
52 52
         $process = new Process([$php, $script, $file->getFullPath()]);
53 53
 
54 54
         return new ChurnProcess($file, $process, 'CyclomaticComplexityProcess');
Please login to merge, or discard this patch.
src/Results/ResultsParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace Churn\Results;
4 4
 
Please login to merge, or discard this patch.