1 | <?php |
||
21 | class HooksDestroyParameters extends BaseParameters |
||
22 | { |
||
23 | |||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | private $hookId; |
||
28 | |||
29 | /** |
||
30 | * HooksDestroyParameters constructor. |
||
31 | * |
||
32 | * @param $hookId |
||
33 | */ |
||
34 | public function __construct($hookId) |
||
38 | |||
39 | /** |
||
40 | * @return string |
||
41 | */ |
||
42 | public function getHookId() |
||
46 | |||
47 | /** |
||
48 | * @param string $hookId |
||
49 | * @return HooksDestroyParameters |
||
50 | */ |
||
51 | public function setHookId($hookId) |
||
57 | |||
58 | /** |
||
59 | * @return string |
||
60 | */ |
||
61 | public function getHTTPQuery() |
||
69 | } |
||
70 |