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
Push — master ( b1c59c...16d2fd )
by
unknown
9s
created
src/TwitterStatusUpdate.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -101,8 +101,8 @@
 block discarded – undo
101 101
 
102 102
     /**
103 103
      * Check if the message length is too long
104
-     * @param $content
105
-     * @param $brevity
104
+     * @param string $content
105
+     * @param Brevity $brevity
106 106
      * @return int
107 107
      */
108 108
     private function messageIsTooLong($content, $brevity)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
      */
47 47
     public function withImage($images)
48 48
     {
49
-        collect($images)->each(function ($image) {
49
+        collect($images)->each(function($image) {
50 50
             $this->images[] = new TwitterImage($image);
51 51
         });
52 52
 
Please login to merge, or discard this patch.
src/Exceptions/CouldNotSendNotification.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 
14 14
     public static function statusUpdateTooLong($exceededLength)
15 15
     {
16
-        return new static("Couldn't post Notification, because the status message was too long by " .
17
-            $exceededLength . " character(s).");
16
+        return new static("Couldn't post Notification, because the status message was too long by ".
17
+            $exceededLength." character(s).");
18 18
     }
19 19
 }
Please login to merge, or discard this patch.