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 (#27)
by
unknown
04:45
created
src/TwitterChannel.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace NotificationChannels\Twitter;
4 4
 
5 5
 use Abraham\TwitterOAuth\TwitterOAuth;
6
-use Illuminate\Notifications\Notifiable;
7 6
 use Illuminate\Notifications\Notification;
8 7
 use NotificationChannels\Twitter\Exceptions\CouldNotSendNotification;
9 8
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         if (is_a($twitterMessage, TwitterStatusUpdate::class) && $twitterMessage->getImages()) {
40 40
             $this->twitter->setTimeouts(10, 15);
41 41
 
42
-            $twitterMessage->imageIds = collect($twitterMessage->getImages())->map(function (TwitterImage $image) {
42
+            $twitterMessage->imageIds = collect($twitterMessage->getImages())->map(function(TwitterImage $image) {
43 43
                 $media = $this->twitter->upload('media/upload', ['media' => $image->getPath()]);
44 44
 
45 45
                 return $media->media_id_string;
Please login to merge, or discard this patch.
src/TwitterStatusUpdate.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
 
102 102
     /**
103 103
      * Check if the message length is too long
104
-     * @param $content
104
+     * @param string $content
105 105
      * @param $brevity
106 106
      * @return int
107 107
      */
Please login to merge, or discard this patch.