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/Requests/SendMessageRequest.php 2 patches
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -15,6 +15,10 @@  discard block
 block discarded – undo
15 15
     // boolean, whether the message body will be encoded in base64
16 16
     private $base64;
17 17
 
18
+    /**
19
+     * @param string $messageBody
20
+     * @param integer $delaySeconds
21
+     */
18 22
     public function __construct($messageBody, $delaySeconds = NULL, $priority = NULL, $base64 = TRUE)
19 23
     {
20 24
         parent::__construct('post', NULL);
@@ -26,6 +30,9 @@  discard block
 block discarded – undo
26 30
         $this->base64 = $base64;
27 31
     }
28 32
 
33
+    /**
34
+     * @param boolean $base64
35
+     */
29 36
     public function setBase64($base64)
30 37
     {
31 38
         $this->base64 = $base64;
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 
4 4
 use AliyunMNS\Constants;
5 5
 use AliyunMNS\Requests\BaseRequest;
6
-use AliyunMNS\Model\QueueAttributes;
7 6
 use AliyunMNS\Traits\MessagePropertiesForSend;
8 7
 
9 8
 class SendMessageRequest extends BaseRequest
Please login to merge, or discard this patch.
lib/AliyunMNS/Responses/BatchDeleteMessageResponse.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -59,6 +59,9 @@  discard block
 block discarded – undo
59 59
         }
60 60
     }
61 61
 
62
+    /**
63
+     * @param \XMLReader $xmlReader
64
+     */
62 65
     private function parseBatchDeleteErrorResponse($xmlReader)
63 66
     {
64 67
         $ex = new BatchDeleteFailException($this->statusCode, "BatchDeleteMessage Failed For Some ReceiptHandles");
@@ -71,6 +74,9 @@  discard block
 block discarded – undo
71 74
         throw $ex;
72 75
     }
73 76
 
77
+    /**
78
+     * @param \XMLReader $xmlReader
79
+     */
74 80
     private function parseNormalErrorResponse($xmlReader)
75 81
     {
76 82
         $result = XMLParser::parseNormalError($xmlReader);
Please login to merge, or discard this patch.
lib/AliyunMNS/Responses/BatchSendMessageResponse.php 2 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -83,6 +83,9 @@  discard block
 block discarded – undo
83 83
         }
84 84
     }
85 85
 
86
+    /**
87
+     * @param \XMLReader $xmlReader
88
+     */
86 89
     private function parseBatchSendErrorResponse($xmlReader)
87 90
     {
88 91
         $ex = new BatchSendFailException($this->statusCode, "BatchSendMessage Failed For Some Messages");
@@ -95,6 +98,9 @@  discard block
 block discarded – undo
95 98
         throw $ex;
96 99
     }
97 100
 
101
+    /**
102
+     * @param \XMLReader $xmlReader
103
+     */
98 104
     private function parseNormalErrorResponse($xmlReader)
99 105
     {
100 106
         $result = XMLParser::parseNormalError($xmlReader);
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 use AliyunMNS\Responses\BaseResponse;
11 11
 use AliyunMNS\Common\XMLParser;
12 12
 use AliyunMNS\Model\SendMessageResponseItem;
13
-use AliyunMNS\Traits\MessageIdAndMD5;
14 13
 
15 14
 class BatchSendMessageResponse extends BaseResponse
16 15
 {
Please login to merge, or discard this patch.
lib/AliyunMNS/Responses/GetQueueAttributeResponse.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use AliyunMNS\Model\QueueAttributes;
6 6
 use AliyunMNS\Exception\MnsException;
7 7
 use AliyunMNS\Exception\QueueNotExistException;
8
-use AliyunMNS\Exception\InvalidArgumentException;
9 8
 use AliyunMNS\Responses\BaseResponse;
10 9
 use AliyunMNS\Common\XMLParser;
11 10
 
Please login to merge, or discard this patch.
lib/AliyunMNS/Responses/ListQueueResponse.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -73,6 +73,9 @@
 block discarded – undo
73 73
         }
74 74
     }
75 75
 
76
+    /**
77
+     * @param string $queueURL
78
+     */
76 79
     private function getQueueNameFromQueueURL($queueURL)
77 80
     {
78 81
         $pieces = explode("/", $queueURL);
Please login to merge, or discard this patch.
lib/AliyunMNS/Responses/ListSubscriptionResponse.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -77,6 +77,9 @@
 block discarded – undo
77 77
         }
78 78
     }
79 79
 
80
+    /**
81
+     * @param string $subscriptionURL
82
+     */
80 83
     private function getSubscriptionNameFromSubscriptionURL($subscriptionURL)
81 84
     {
82 85
         $pieces = explode("/", $subscriptionURL);
Please login to merge, or discard this patch.
lib/AliyunMNS/Responses/ListTopicResponse.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -78,6 +78,9 @@
 block discarded – undo
78 78
         }
79 79
     }
80 80
 
81
+    /**
82
+     * @param string $topicURL
83
+     */
81 84
     private function getTopicNameFromTopicURL($topicURL)
82 85
     {
83 86
         $pieces = explode("/", $topicURL);
Please login to merge, or discard this patch.
lib/AliyunMNS/Responses/MnsPromise.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 
4 4
 use GuzzleHttp\Promise\PromiseInterface;
5 5
 use AliyunMNS\Responses\BaseResponse;
6
-use AliyunMNS\Exception\MnsException;
7 6
 use GuzzleHttp\Exception\TransferException;
8 7
 use Psr\Http\Message\ResponseInterface;
9 8
 
Please login to merge, or discard this patch.
lib/AliyunMNS/Topic.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 namespace AliyunMNS;
3 3
 
4 4
 use AliyunMNS\Http\HttpClient;
5
-use AliyunMNS\AsyncCallback;
6 5
 use AliyunMNS\Model\TopicAttributes;
7 6
 use AliyunMNS\Model\SubscriptionAttributes;
8 7
 use AliyunMNS\Model\UpdateSubscriptionAttributes;
Please login to merge, or discard this patch.