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.
Passed
Push — master ( 4098e5...3618e2 )
by
unknown
08:13
created
Category
src/Buzz/OAuthBrowser.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
     {
31 31
         parent::__construct($client, $factory);
32 32
 
33
-        $this->headers = array('User-Agent' => 'api.video SDK (php; v:' . self::SDK_VERSION . '; ' . $applicationName . ')');
33
+        $this->headers = array('User-Agent' => 'api.video SDK (php; v:'.self::SDK_VERSION.'; '.$applicationName.')');
34 34
     }
35 35
 
36 36
     /**
Please login to merge, or discard this patch.
src/Api/Videos.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -410,7 +410,7 @@
 block discarded – undo
410 410
             $video->playerId = $data['playerId'];
411 411
         }
412 412
         $video->panoramic    = $data['panoramic'];
413
-        $video->mp4Support    = $data['mp4Support'];
413
+        $video->mp4Support = $data['mp4Support'];
414 414
 
415 415
         return $video;
416 416
     }
Please login to merge, or discard this patch.
src/Api/AnalyticsVideo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 
34 34
         $parameters['currentPage'] = isset($parameters['currentPage']) ? $parameters['currentPage'] : 1;
35 35
         $parameters['pageSize'] = isset($parameters['pageSize']) ? $parameters['pageSize'] : 100;
36
-        $items           = array();
36
+        $items = array();
37 37
 
38 38
         do {
39 39
             $response = $this->browser->get("/analytics/videos/$videoId?".http_build_query($parameters));
Please login to merge, or discard this patch.