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
Pull Request — master (#23)
by t
03:07
created
src/iapis/VideoResource.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
             'pageSize' => $pageSize,
32 32
         ]);
33 33
         $this->_result = Json::get($res, 'data', []);
34
-        $this->_toArrayCall = function ($array) {
34
+        $this->_toArrayCall = function($array) {
35 35
             return Arrays::columns($array, [
36 36
                 'id' => 'd_id',
37 37
                 'name' => 'd_name',
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
             'pageSize' => $pageSize,
61 61
         ]);
62 62
         $this->_result = Json::get($res, 'data', []);
63
-        $this->_toArrayCall = function ($array) {
63
+        $this->_toArrayCall = function($array) {
64 64
             return Arrays::columns($array, [
65 65
                 'id' => 'd_id',
66 66
                 'name' => 'd_name',
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
             'd_id' => $id,
86 86
         ]);
87 87
         $this->_result = Json::get($res, 'data', []);
88
-        $this->_toArrayCall = function ($array) {
88
+        $this->_toArrayCall = function($array) {
89 89
             return Arrays::columns($array, [
90 90
                 'id' => 'd_id',
91 91
                 'name' => 'd_name',
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
                 'lang' => 'd_lang',
97 97
                 'year' => 'd_year',
98 98
                 'description' => 'd_content',
99
-                'episodes' => function ($array) {
99
+                'episodes' => function($array) {
100 100
                     $episodes = explode('#', I::get($array, 'd_playurl'));
101 101
                     return Arrays::explode('$', $episodes);
102 102
                 },
Please login to merge, or discard this patch.