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.
Passed
Branch master (b10c57)
by milkmeowo
02:58
created

GetSubscriptionAttributeRequest   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 30
rs 10
c 0
b 0
f 0
wmc 5
1
<?php
2
namespace AliyunMNS\Requests;
3
4
use AliyunMNS\Requests\BaseRequest;
5
6
class GetSubscriptionAttributeRequest extends BaseRequest
7
{
8
    private $topicName;
9
    private $subscriptionName;
10
11
    public function __construct($topicName, $subscriptionName)
12
    {
13
        parent::__construct('get', 'topics/' . $topicName . '/subscriptions/' . $subscriptionName);
14
        $this->topicName = $topicName;
15
        $this->subscriptionName = $subscriptionName;
16
    }
17
18
    public function getTopicName()
19
    {
20
        return $this->topicName;
21
    }
22
23
    public function getSubscriptionName()
24
    {
25
        return $this->subscriptionName;
26
    }
27
28
    public function generateBody()
29
    {
30
        return NULL;
31
    }
32
33
    public function generateQueryString()
34
    {
35
        return NULL;
36
    }
37
}
38
39
?>
40