Completed
Pull Request — master (#134)
by Bill
96:53 queued 57:10
created
src/Commands/ChurnCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
      */
228 228
     private function displayResultsJson(OutputInterface $output, ResultCollection $results)
229 229
     {
230
-        $data = array_map(function (array $result) {
230
+        $data = array_map(function(array $result) {
231 231
             return [
232 232
                 'file' => $result[0],
233 233
                 'commits' => $result[1],
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
         }
259 259
 
260 260
         throw new InvalidArgumentException(
261
-            'Provide the directories you want to scan as arguments, ' .
261
+            'Provide the directories you want to scan as arguments, '.
262 262
             'or configure them under "directoriesToScan" in your churn.yml file.'
263 263
         );
264 264
     }
Please login to merge, or discard this patch.
src/Results/ResultCollection.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function orderByScoreDesc(): self
15 15
     {
16
-        return $this->sortByDesc(function (Result $result) {
16
+        return $this->sortByDesc(function(Result $result) {
17 17
             return $result->getScore($this->maxCommits(), $this->maxComplexity());
18 18
         });
19 19
     }
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
         return $this->orderByScoreDesc()
31 31
             ->filter(
32
-                function (Result $result) use ($minScore) {
32
+                function(Result $result) use ($minScore) {
33 33
                     return $result->getScore($this->maxCommits(), $this->maxComplexity()) >= $minScore;
34 34
                 }
35 35
             )
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function maxCommits(): int
44 44
     {
45
-        return $this->max(function (Result $result) {
45
+        return $this->max(function(Result $result) {
46 46
             return $result->getCommits();
47 47
         });
48 48
     }
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      */
54 54
     public function maxComplexity(): int
55 55
     {
56
-        return $this->max(function (Result $result) {
56
+        return $this->max(function(Result $result) {
57 57
             return $result->getComplexity();
58 58
         });
59 59
     }
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     public function toArray(): array
67 67
     {
68 68
         return array_values(array_map(
69
-            function (Result $result) {
69
+            function(Result $result) {
70 70
                 return array_merge(
71 71
                     $result->toArray(),
72 72
                     [$result->getScore($this->maxCommits(), $this->maxComplexity())]
Please login to merge, or discard this patch.