@@ -1,4 +1,4 @@ discard block  | 
                                                    ||
| 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  | 
                                                    ||
| 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');  | 
                                                        
@@ -1,4 +1,4 @@  | 
                                                    ||
| 1 | -<?php declare(strict_types = 1);  | 
                                                        |
| 1 | +<?php declare(strict_types=1);  | 
                                                        |
| 2 | 2 | |
| 3 | 3 | namespace Churn\Results;  | 
                                                        
| 4 | 4 | |