@@ -52,7 +52,7 @@ |
||
52 | 52 | /** |
53 | 53 | * Displays the results in a table. |
54 | 54 | * @param OutputInterface $output Output. |
55 | - * @param Churn\Results\ResultCollection $results Results Collection. |
|
55 | + * @param ResultCollection $results Results Collection. |
|
56 | 56 | * @return void |
57 | 57 | */ |
58 | 58 | protected function displayResults(OutputInterface $output, ResultCollection $results) |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | public function createGitCommitProcess(File $file): ChurnProcess |
17 | 17 | { |
18 | 18 | $process = new Process( |
19 | - 'git -C ' . getcwd() . " log --name-only --pretty=format: " . $file->getFullPath(). " | sort | uniq -c | sort -nr" |
|
19 | + 'git -C '.getcwd()." log --name-only --pretty=format: ".$file->getFullPath()." | sort | uniq -c | sort -nr" |
|
20 | 20 | ); |
21 | 21 | |
22 | 22 | return new ChurnProcess($file, $process, 'GitCommitProcess'); |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public function createCyclomaticComplexityProcess(File $file): ChurnProcess |
31 | 31 | { |
32 | - $rootFolder = __DIR__ . '/../../'; |
|
32 | + $rootFolder = __DIR__.'/../../'; |
|
33 | 33 | |
34 | 34 | $process = new Process( |
35 | 35 | "php {$rootFolder}CyclomaticComplexityAssessorRunner {$file->getFullPath()}" |
@@ -70,7 +70,7 @@ |
||
70 | 70 | */ |
71 | 71 | public function getKey(): string |
72 | 72 | { |
73 | - return $this->getType() . $this->file->getFullPath(); |
|
73 | + return $this->getType().$this->file->getFullPath(); |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | /** |