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 ( a518ec...203b50 )
by Regan
8s
created
src/Message.php 2 patches
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
      * Set the icon (either URL or emoji) we will post as.
177 177
      *
178 178
      * @param string $icon
179
-     * @return this
179
+     * @return null|Message
180 180
      */
181 181
     public function setIcon($icon)
182 182
     {
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
      * Slack's Markdown-like language.
224 224
      *
225 225
      * @param bool $value
226
-     * @return void
226
+     * @return Message
227 227
      */
228 228
     public function setAllowMarkdown($value)
229 229
     {
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
     /**
236 236
      * Enable Markdown formatting for the message.
237 237
      *
238
-     * @return void
238
+     * @return Message
239 239
      */
240 240
     public function enableMarkdown()
241 241
     {
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
     /**
248 248
      * Disable Markdown formatting for the message.
249 249
      *
250
-     * @return void
250
+     * @return Message
251 251
      */
252 252
     public function disableMarkdown()
253 253
     {
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
      * in Slack's Markdown-like language.
273 273
      *
274 274
      * @param array $fields
275
-     * @return void
275
+     * @return Message
276 276
      */
277 277
     public function setMarkdownInAttachments(array $fields)
278 278
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -335,7 +335,7 @@
 block discarded – undo
335 335
         } elseif (is_array($attachment)) {
336 336
             $attachmentObject = new Attachment($attachment);
337 337
 
338
-            if (! isset($attachment['mrkdwn_in'])) {
338
+            if ( ! isset($attachment['mrkdwn_in'])) {
339 339
                 $attachmentObject->setMarkdownFields($this->getMarkdownInAttachments());
340 340
             }
341 341
 
Please login to merge, or discard this patch.
src/Attachment.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -332,7 +332,7 @@
 block discarded – undo
332 332
     /**
333 333
      * Set the color to use for the attachment.
334 334
      *
335
-     * @param string $colour
335
+     * @param string $color
336 336
      * @return $this
337 337
      */
338 338
     public function setColor($color)
Please login to merge, or discard this patch.