Total Complexity | 4 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class DeleteTopicRequest extends BaseRequest |
||
9 | { |
||
10 | private $topicName; |
||
11 | |||
12 | public function __construct($topicName) |
||
13 | { |
||
14 | parent::__construct('delete', 'topics/' . $topicName); |
||
15 | $this->topicName = $topicName; |
||
16 | } |
||
17 | |||
18 | public function getTopicName() |
||
19 | { |
||
20 | return $this->topicName; |
||
21 | } |
||
22 | |||
23 | public function generateBody() |
||
24 | { |
||
25 | return NULL; |
||
26 | } |
||
27 | |||
28 | public function generateQueryString() |
||
29 | { |
||
30 | return NULL; |
||
31 | } |
||
34 |