@@ -32,7 +32,7 @@ |
||
32 | 32 | public function createGitCommitProcess(File $file): ChurnProcess |
33 | 33 | { |
34 | 34 | $process = new Process( |
35 | - 'git -C ' . getcwd() . " log --since=\"" . $this->config->getCommitsSince() . "\" --name-only --pretty=format: " . $file->getFullPath(). " | sort | uniq -c | sort -nr" |
|
35 | + 'git -C '.getcwd()." log --since=\"".$this->config->getCommitsSince()."\" --name-only --pretty=format: ".$file->getFullPath()." | sort | uniq -c | sort -nr" |
|
36 | 36 | ); |
37 | 37 | |
38 | 38 | return new ChurnProcess($file, $process, 'GitCommitProcess'); |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Churn\Commands; |
5 | 5 |