1 | <?php |
||
29 | abstract class AbstractAliasesCatRequest extends AbstractBaseRequest |
||
30 | { |
||
31 | const REQUEST_ACTION = '_cat'; |
||
32 | const CAT_TYPE = 'aliases'; |
||
33 | |||
34 | |||
35 | /** |
||
36 | * @inheritdoc |
||
37 | */ |
||
38 | 2 | public function getMethod() |
|
42 | |||
43 | /** |
||
44 | * @inheritdoc |
||
45 | */ |
||
46 | 2 | public function getAction() |
|
50 | |||
51 | /** |
||
52 | * @inheritdoc |
||
53 | */ |
||
54 | 2 | public function getIndex() |
|
58 | |||
59 | /** |
||
60 | * @inheritdoc |
||
61 | */ |
||
62 | 2 | public function getType() |
|
66 | |||
67 | /** |
||
68 | * @inheritdoc |
||
69 | */ |
||
70 | 2 | public function getBody() |
|
74 | |||
75 | /** |
||
76 | * @inheritdoc |
||
77 | */ |
||
78 | 2 | public function setBody($body) |
|
82 | } |
||
83 |