Cancelled
Push — master ( a8b464...2fc3a5 )
by Billie
06:55
created
src/PurpleBooth/GitGitHubLint/Message.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -73,6 +73,7 @@
 block discarded – undo
73 73
      * Associate a status with this message
74 74
      *
75 75
      * @param Status $status
76
+     * @return void
76 77
      */
77 78
     public function setStatus(Status $status);
78 79
 }
Please login to merge, or discard this patch.
src/PurpleBooth/GitGitHubLint/StatusSendService.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -18,6 +18,7 @@
 block discarded – undo
18 18
      * @param string $repository
19 19
      * @param string $sha
20 20
      * @param Status $status
21
+     * @return void
21 22
      */
22 23
     public function updateStatus(string $organisation, string $repository, string $sha, Status $status);
23 24
 }
Please login to merge, or discard this patch.
src/PurpleBooth/GitGitHubLint/ValidationServiceImplementation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
             $statuses[] = $validator->validate($message);
31 31
         }
32 32
 
33
-        usort($statuses, function (Status $statusA, Status $statusB) {
33
+        usort($statuses, function(Status $statusA, Status $statusB) {
34 34
             return $statusA->getWeight() <=> $statusB->getWeight();
35 35
         });
36 36
 
Please login to merge, or discard this patch.