Completed
Pull Request — master (#127)
by Matthias
01:24
created
src/Factories/ProcessFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
src/Commands/AssessCyclomaticComplexity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Churn\Commands;
5 5
 
Please login to merge, or discard this patch.