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 ( 30655b...a8e9a1 )
by Romain
04:44
created
src/Strime/Slackify/Api/Files.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      * @param  string $file
63 63
      * @param  integer $count
64 64
      * @param  integer $page
65
-     * @return Files
65
+     * @return \Psr\Http\Message\StreamInterface
66 66
      */
67 67
     public function info($file, $count = 100, $page = 1) {
68 68
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      * @param  string $types
116 116
      * @param  integer $count
117 117
      * @param  integer $page
118
-     * @return Files
118
+     * @return \Psr\Http\Message\StreamInterface
119 119
      */
120 120
     public function list_files($user = NULL, $channel = NULL, $ts_from = "now", $ts_to = "all", $types = "all", $count = 100, $page = 1) {
121 121
 
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
      * {@inheritdoc}
223 223
      *
224 224
      * @param  string $file
225
-     * @return Files
225
+     * @return \Psr\Http\Message\StreamInterface
226 226
      */
227 227
     public function sharedPublicURL($file) {
228 228
 
Please login to merge, or discard this patch.
src/Strime/Slackify/Api/Pin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
      * {@inheritdoc}
84 84
      *
85 85
      * @param  string $channel
86
-     * @return string
86
+     * @return \Psr\Http\Message\StreamInterface
87 87
      */
88 88
     public function list_pin($channel) {
89 89
 
Please login to merge, or discard this patch.
src/Strime/Slackify/Api/Reactions.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      * @param  string $channel
95 95
      * @param  float $timestamp
96 96
      * @param  boolean $full
97
-     * @return Reactions
97
+     * @return \Psr\Http\Message\StreamInterface
98 98
      */
99 99
     public function get($file = NULL, $file_comment = NULL, $channel = NULL, $timestamp = NULL, $full = NULL) {
100 100
 
@@ -161,9 +161,9 @@  discard block
 block discarded – undo
161 161
      *
162 162
      * @param  string $user
163 163
      * @param  boolean $full
164
-     * @param  string $count
165
-     * @param  string $page
166
-     * @return Reactions
164
+     * @param  integer $count
165
+     * @param  integer $page
166
+     * @return \Psr\Http\Message\StreamInterface
167 167
      */
168 168
     public function list_reactions($user = NULL, $full = NULL, $count = 100, $page = 1) {
169 169
 
Please login to merge, or discard this patch.
src/Strime/Slackify/Api/Reminders.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      * @param  string $text
24 24
      * @param  integer $time
25 25
      * @param  string $user
26
-     * @return Reminders
26
+     * @return \Psr\Http\Message\StreamInterface
27 27
      */
28 28
     public function add($text, $time, $user = NULL) {
29 29
 
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
      * {@inheritdoc}
155 155
      *
156 156
      * @param  string $reminder
157
-     * @return string
157
+     * @return \Psr\Http\Message\StreamInterface
158 158
      */
159 159
     public function info($reminder) {
160 160
 
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
     /**
194 194
      * {@inheritdoc}
195 195
      *
196
-     * @return string
196
+     * @return \Psr\Http\Message\StreamInterface
197 197
      */
198 198
     public function list_reminders() {
199 199
 
Please login to merge, or discard this patch.
src/Strime/Slackify/Api/Stars.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
      *
86 86
      * @param  int $count
87 87
      * @param  int $page
88
-     * @return string
88
+     * @return \Psr\Http\Message\StreamInterface
89 89
      */
90 90
     public function list_stars($count = 100, $page = 1) {
91 91
 
Please login to merge, or discard this patch.
src/Strime/Slackify/Api/UserGroups.php 1 patch
Doc Comments   +7 added lines, -8 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      * @param  string $description
26 26
      * @param  string $channels
27 27
      * @param  bool $include_count
28
-     * @return string
28
+     * @return \Psr\Http\Message\StreamInterface
29 29
      */
30 30
     public function create($name, $handle = NULL, $description = NULL, $channels = NULL, $include_count = NULL) {
31 31
 
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      *
92 92
      * @param  string $usergroup
93 93
      * @param  bool $include_count
94
-     * @return string
94
+     * @return \Psr\Http\Message\StreamInterface
95 95
      */
96 96
     public function disable($usergroup, $include_count = NULL) {
97 97
 
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
      *
140 140
      * @param  string $usergroup
141 141
      * @param  bool $include_count
142
-     * @return string
142
+     * @return \Psr\Http\Message\StreamInterface
143 143
      */
144 144
     public function enable($usergroup, $include_count = NULL) {
145 145
 
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
      * @param  bool $include_disabled
190 190
      * @param  bool $include_count
191 191
      * @param  bool $include_users
192
-     * @return string
192
+     * @return \Psr\Http\Message\StreamInterface
193 193
      */
194 194
     public function list_usergroups($include_disabled = NULL, $include_count = NULL, $include_users = NULL) {
195 195
 
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
      * @param  string $description
249 249
      * @param  string $channels
250 250
      * @param  bool $include_count
251
-     * @return string
251
+     * @return \Psr\Http\Message\StreamInterface
252 252
      */
253 253
     public function update($usergroup, $name = NULL, $handle = NULL, $description = NULL, $channels = NULL, $include_count = NULL) {
254 254
 
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
      *
321 321
      * @param  string $usergroup
322 322
      * @param  bool $include_disabled
323
-     * @return string
323
+     * @return \Psr\Http\Message\StreamInterface
324 324
      */
325 325
     public function usersList($usergroup, $include_disabled = NULL) {
326 326
 
@@ -368,8 +368,7 @@  discard block
 block discarded – undo
368 368
      *
369 369
      * @param  string $usergroup
370 370
      * @param  string $users
371
-     * @param  bool $include_count
372
-     * @return string
371
+     * @return \Psr\Http\Message\StreamInterface
373 372
      */
374 373
     public function usersUpdate($usergroup, $users, $include_disabled = NULL) {
375 374
 
Please login to merge, or discard this patch.
src/Strime/Slackify/Api/Users.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      * {@inheritdoc}
51 51
      *
52 52
      * @param  string $user
53
-     * @return string
53
+     * @return \Psr\Http\Message\StreamInterface
54 54
      */
55 55
     public function getPresence($user) {
56 56
 
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     /**
90 90
      * {@inheritdoc}
91 91
      *
92
-     * @return string
92
+     * @return \Psr\Http\Message\StreamInterface
93 93
      */
94 94
     public function identity() {
95 95
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      * {@inheritdoc}
121 121
      *
122 122
      * @param  string $user
123
-     * @return string
123
+     * @return \Psr\Http\Message\StreamInterface
124 124
      */
125 125
     public function info($user) {
126 126
 
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
      * {@inheritdoc}
161 161
      *
162 162
      * @param  bool $presence
163
-     * @return string
163
+     * @return \Psr\Http\Message\StreamInterface
164 164
      */
165 165
     public function list_users($presence = NULL) {
166 166
 
Please login to merge, or discard this patch.