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
Pull Request — master (#90)
by Atymic
02:59
created
src/Twilio.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -177,7 +177,7 @@
 block discarded – undo
177 177
     /**
178 178
      * @param array $params
179 179
      * @param TwilioMessage $message
180
-     * @param array $optionalParams
180
+     * @param string[] $optionalParams
181 181
      * @return Twilio
182 182
      */
183 183
     protected function fillOptionalParams(&$params, $message, $optionalParams): Twilio
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace NotificationChannels\Twilio;
4 4
 
5 5
 use NotificationChannels\Twilio\Exceptions\CouldNotSendNotification;
6
-use Twilio\Exceptions\RestException;
7 6
 use Twilio\Exceptions\TwilioException;
8 7
 use Twilio\Rest\Api\V2010\Account\CallInstance;
9 8
 use Twilio\Rest\Api\V2010\Account\MessageInstance;
Please login to merge, or discard this patch.
src/TwilioChannel.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
      *
94 94
      * @param $notifiable
95 95
      *
96
-     * @return mixed|null
96
+     * @return boolean
97 97
      * @throws CouldNotSendNotification
98 98
      */
99 99
     protected function canReceiveAlphanumericSender($notifiable)
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Illuminate\Notifications\Events\NotificationFailed;
8 8
 use Illuminate\Notifications\Notification;
9 9
 use NotificationChannels\Twilio\Exceptions\CouldNotSendNotification;
10
-use Twilio\Exceptions\RestException;
11 10
 
12 11
 class TwilioChannel
13 12
 {
Please login to merge, or discard this patch.
src/TwilioSmsMessage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
     /**
110 110
      * Set force delivery (Deliver message without validation).
111 111
      *
112
-     * @param bool $forceDelivery
112
+     * @param string|boolean $forceDelivery
113 113
      * @return $this
114 114
      */
115 115
     public function forceDelivery(string $forceDelivery): self
Please login to merge, or discard this patch.