1 | <?php |
||
8 | class QStat extends BaseCommand implements CommandInterface |
||
9 | { |
||
10 | /** |
||
11 | * Tells the argument types for this command |
||
12 | * |
||
13 | * @var int |
||
14 | */ |
||
15 | protected $argumentsType = self::ARGUMENTS_TYPE_STRING; |
||
16 | |||
17 | /** |
||
18 | * Tells which class handles the response |
||
19 | * |
||
20 | * @var int |
||
21 | */ |
||
22 | protected $responseHandler = KeyValueResponse::class; |
||
23 | |||
24 | /** |
||
25 | * Get command |
||
26 | * |
||
27 | * @return string Command |
||
28 | */ |
||
29 | 18 | public function getCommand() |
|
33 | } |
||
34 |