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 ( a8e9a1...c7f753 )
by Romain
05:40
created
src/Strime/Slackify/Api/Auth.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
     /**
67 67
      * {@inheritdoc}
68 68
      *
69
-     * @return Auth
69
+     * @return \Psr\Http\Message\StreamInterface
70 70
      */
71 71
     public function test() {
72 72
 
Please login to merge, or discard this patch.
src/Strime/Slackify/Api/Chat.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      * @param  float $ts
24 24
      * @param  string $channel
25 25
      * @param  string $as_user
26
-     * @return Chat
26
+     * @return \Psr\Http\Message\StreamInterface
27 27
      */
28 28
     public function delete($ts, $channel, $as_user = NULL) {
29 29
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      *
75 75
      * @param  string $channel
76 76
      * @param  string $text
77
-     * @return Chat
77
+     * @return \Psr\Http\Message\StreamInterface
78 78
      */
79 79
     public function meMessage($channel, $text) {
80 80
 
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
      * @param  string $icon_emoji
130 130
      * @param  float $thread_ts
131 131
      * @param  string $reply_broadcast
132
-     * @return Chat
132
+     * @return \Psr\Http\Message\StreamInterface
133 133
      */
134 134
     public function postMessage($channel, $text, $parse = "none", $link_names = 1, $attachments = NULL,
135 135
         $unfurl_links = TRUE, $unfurl_media = FALSE, $username = NULL, $as_user = TRUE, $icon_url = NULL,
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
      * @param  string $parse
236 236
      * @param  integer $link_names
237 237
      * @param  bool $as_user
238
-     * @return Chat
238
+     * @return \Psr\Http\Message\StreamInterface
239 239
      */
240 240
     public function update($ts, $channel, $text, $attachments = NULL, $parse = "none", $link_names = 1, $as_user = TRUE) {
241 241
 
Please login to merge, or discard this patch.
src/Strime/Slackify/Api/Dnd.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * {@inheritdoc}
49 49
      *
50
-     * @return Dnd
50
+     * @return \Psr\Http\Message\StreamInterface
51 51
      */
52 52
     public function endSnooze() {
53 53
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      * {@inheritdoc}
76 76
      *
77 77
      * @param  string $user
78
-     * @return Dnd
78
+     * @return \Psr\Http\Message\StreamInterface
79 79
      */
80 80
     public function info($user = NULL) {
81 81
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      * {@inheritdoc}
116 116
      *
117 117
      * @param  integer $num_minutes
118
-     * @return Dnd
118
+     * @return \Psr\Http\Message\StreamInterface
119 119
      */
120 120
     public function setSnooze($num_minutes) {
121 121
 
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
      * {@inheritdoc}
154 154
      *
155 155
      * @param  string $users
156
-     * @return Dnd
156
+     * @return \Psr\Http\Message\StreamInterface
157 157
      */
158 158
     public function teamInfo($users = NULL) {
159 159
 
Please login to merge, or discard this patch.
src/Strime/Slackify/Api/FilesComments.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      * @param  string $file
24 24
      * @param  string $comment
25 25
      * @param  string $channel
26
-     * @return FilesComments
26
+     * @return \Psr\Http\Message\StreamInterface
27 27
      */
28 28
     public function add($file, $comment, $channel = NULL) {
29 29
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      * @param  string $file
118 118
      * @param  string $id
119 119
      * @param  string $comment
120
-     * @return FilesComments
120
+     * @return \Psr\Http\Message\StreamInterface
121 121
      */
122 122
     public function edit($file, $id, $comment) {
123 123
 
Please login to merge, or discard this patch.
src/Strime/Slackify/Api/Oauth.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * @param  string $client_secret
25 25
      * @param  string $code
26 26
      * @param  string $redirect_uri
27
-     * @return string $response
27
+     * @return \Psr\Http\Message\StreamInterface $response
28 28
      */
29 29
     public function access($client_id, $client_secret, $code, $redirect_uri = NULL) {
30 30
 
Please login to merge, or discard this patch.
src/Strime/Slackify/Api/Team.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -20,10 +20,10 @@  discard block
 block discarded – undo
20 20
     /**
21 21
      * {@inheritdoc}
22 22
      *
23
-     * @param  string $count
24
-     * @param  string $page
23
+     * @param  integer $count
24
+     * @param  integer $page
25 25
      * @param  string $before
26
-     * @return string
26
+     * @return \Psr\Http\Message\StreamInterface
27 27
      */
28 28
     public function accessLogs($count = 100, $page = 1, $before = NULL) {
29 29
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      * {@inheritdoc}
75 75
      *
76 76
      * @param  string $user
77
-     * @return string
77
+     * @return \Psr\Http\Message\StreamInterface
78 78
      */
79 79
     public function billableInfo($user = NULL) {
80 80
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
     /**
116 116
      * {@inheritdoc}
117 117
      *
118
-     * @return string
118
+     * @return \Psr\Http\Message\StreamInterface
119 119
      */
120 120
     public function info() {
121 121
 
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
      * @param  string $change_type
152 152
      * @param  int $count
153 153
      * @param  int $page
154
-     * @return string
154
+     * @return \Psr\Http\Message\StreamInterface
155 155
      */
156 156
     public function integrationLogs($service_id = NULL, $app_id = NULL, $user = NULL, $change_type = NULL, $count = 100, $page = 1) {
157 157
 
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
      * {@inheritdoc}
224 224
      *
225 225
      * @param  string $visibility
226
-     * @return string
226
+     * @return \Psr\Http\Message\StreamInterface
227 227
      */
228 228
     public function profileGet($visibility = NULL) {
229 229
 
Please login to merge, or discard this patch.
src/Strime/Slackify/Api/UsersProfile.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      *
23 23
      * @param  string $user
24 24
      * @param  bool $include_labels
25
-     * @return string
25
+     * @return \Psr\Http\Message\StreamInterface
26 26
      */
27 27
     public function get($user = NULL, $include_labels = NULL) {
28 28
 
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      * @param  string $profile
74 74
      * @param  string $name
75 75
      * @param  string $value
76
-     * @return string
76
+     * @return \Psr\Http\Message\StreamInterface
77 77
      */
78 78
     public function set($user = NULL, $profile = NULL, $name = NULL, $value = NULL) {
79 79
 
Please login to merge, or discard this patch.
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.