GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Branch master (6ea5e5)
by Lester
06:28
created
src/EngageSpark.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -73,11 +73,17 @@
 block discarded – undo
73 73
         }
74 74
     }
75 75
 
76
+    /**
77
+     * @param string $mode
78
+     */
76 79
     public function getEndPoint($mode)
77 80
     {
78 81
         return Arr::get($this->end_points, $mode, $this->end_points['sms']);
79 82
     }
80 83
 
84
+    /**
85
+     * @param string $mode
86
+     */
81 87
     public function getWebHook($mode)
82 88
     {
83 89
         return Arr::get($this->web_hooks, $mode, $this->web_hooks['sms']);
Please login to merge, or discard this patch.
src/EngageSparkChannel.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -69,6 +69,9 @@
 block discarded – undo
69 69
         return \is_array($to) ? $to : [$to];
70 70
     }
71 71
 
72
+    /**
73
+     * @param string[] $recipients
74
+     */
72 75
     protected function sendMessage($recipients, EngageSparkMessage $message)
73 76
     {
74 77
         // if (\mb_strlen($message->content) > 800) {
Please login to merge, or discard this patch.