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.
Test Setup Failed
Branch master (9a7ea4)
by Yang
06:35
created
lib/AliyunMNS/Client.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
      * @param CreateQueueRequest $request:  the QueueName and QueueAttributes
84 84
      * @param AsyncCallback $callback:  the Callback when the request finishes
85 85
      *
86
-     * @return MnsPromise $promise: the MnsPromise instance
86
+     * @return Responses\MnsPromise $promise: the MnsPromise instance
87 87
      *
88 88
      * @throws MnsException if any exception happends
89 89
      */
Please login to merge, or discard this patch.
lib/AliyunMNS/Exception/BatchDeleteFailException.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@
 block discarded – undo
14 14
 {
15 15
     protected $deleteMessageErrorItems;
16 16
 
17
+    /**
18
+     * @param string $message
19
+     */
17 20
     public function __construct($code, $message, $previousException = NULL, $requestId = NULL, $hostId = NULL)
18 21
     {
19 22
         parent::__construct($code, $message, $previousException, Constants::BATCH_DELETE_FAIL, $requestId, $hostId);
Please login to merge, or discard this patch.
lib/AliyunMNS/Exception/BatchSendFailException.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@
 block discarded – undo
14 14
 {
15 15
     protected $sendMessageResponseItems;
16 16
 
17
+    /**
18
+     * @param string $message
19
+     */
17 20
     public function __construct($code, $message, $previousException = NULL, $requestId = NULL, $hostId = NULL)
18 21
     {
19 22
         parent::__construct($code, $message, $previousException, Constants::BATCH_SEND_FAIL, $requestId, $hostId);
Please login to merge, or discard this patch.
lib/AliyunMNS/Http/HttpClient.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use AliyunMNS\Responses\BaseResponse;
9 9
 use AliyunMNS\Signature\Signature;
10 10
 use AliyunMNS\AsyncCallback;
11
-use Psr\Http\Message\ResponseInterface;
12 11
 use GuzzleHttp\Psr7\Request;
13 12
 use GuzzleHttp\Exception\TransferException;
14 13
 use AliyunMNS\Responses\MnsPromise;
Please login to merge, or discard this patch.
lib/AliyunMNS/Model/Message.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -8,6 +8,17 @@
 block discarded – undo
8 8
 {
9 9
     use MessagePropertiesForReceive;
10 10
 
11
+    /**
12
+     * @param string|null $messageId
13
+     * @param string|null $messageBodyMD5
14
+     * @param string|null $messageBody
15
+     * @param string|null $enqueueTime
16
+     * @param string|null $nextVisibleTime
17
+     * @param string|null $firstDequeueTime
18
+     * @param string|null $dequeueCount
19
+     * @param string|null $priority
20
+     * @param string|null $receiptHandle
21
+     */
11 22
     public function __construct($messageId, $messageBodyMD5, $messageBody, $enqueueTime, $nextVisibleTime, $firstDequeueTime, $dequeueCount, $priority, $receiptHandle)
12 23
     {
13 24
         $this->messageId = $messageId;
Please login to merge, or discard this patch.
lib/AliyunMNS/Model/QueueAttributes.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -24,6 +24,19 @@
 block discarded – undo
24 24
     private $inactiveMessages;
25 25
     private $delayMessages;
26 26
 
27
+    /**
28
+     * @param string $delaySeconds
29
+     * @param string $maximumMessageSize
30
+     * @param string $messageRetentionPeriod
31
+     * @param string $visibilityTimeout
32
+     * @param string $pollingWaitSeconds
33
+     * @param string $queueName
34
+     * @param string $createTime
35
+     * @param string $lastModifyTime
36
+     * @param string $activeMessages
37
+     * @param string $inactiveMessages
38
+     * @param string $delayMessages
39
+     */
27 40
     public function __construct(
28 41
         $delaySeconds = NULL,
29 42
         $maximumMessageSize = NULL,
Please login to merge, or discard this patch.
lib/AliyunMNS/Model/SendMessageRequestItem.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace AliyunMNS\Model;
3 3
 
4
-use AliyunMNS\Constants;
5 4
 use AliyunMNS\Traits\MessagePropertiesForSend;
6 5
 
7 6
 // this class is used for BatchSend
Please login to merge, or discard this patch.
lib/AliyunMNS/Model/SendMessageResponseItem.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@
 block discarded – undo
16 16
     protected $errorCode;
17 17
     protected $errorMessage;
18 18
 
19
+    /**
20
+     * @param boolean $isSucceed
21
+     */
19 22
     public function __construct($isSucceed, $param1, $param2)
20 23
     {
21 24
         $this->isSucceed = $isSucceed;
Please login to merge, or discard this patch.
lib/AliyunMNS/Model/SubscriptionAttributes.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -18,6 +18,15 @@
 block discarded – undo
18 18
     private $createTime;
19 19
     private $lastModifyTime;
20 20
 
21
+    /**
22
+     * @param string $subscriptionName
23
+     * @param string $strategy
24
+     * @param string $contentFormat
25
+     * @param string $topicName
26
+     * @param string $topicOwner
27
+     * @param string $createTime
28
+     * @param string $lastModifyTime
29
+     */
21 30
     public function __construct(
22 31
         $subscriptionName = NULL,
23 32
         $endpoint = NULL,
Please login to merge, or discard this patch.