Completed
Pull Request — master (#18)
by Bill
02:11
created
src/Commands/ChurnCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/Results/ResultCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function orderByScoreDesc(): self
14 14
     {
15
-        return $this->sortByDesc(function ($result) {
15
+        return $this->sortByDesc(function($result) {
16 16
             return $result->getScore();
17 17
         });
18 18
     }
Please login to merge, or discard this patch.