Total Complexity | 1 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | abstract class AbstractCommandWrapper |
||
12 | { |
||
13 | /** |
||
14 | * @var ClientInterface |
||
15 | */ |
||
16 | protected $client; |
||
17 | |||
18 | /** |
||
19 | * @var CommandFormatter |
||
20 | */ |
||
21 | protected $commandFormatter; |
||
22 | |||
23 | /** |
||
24 | * Send raw command |
||
25 | * |
||
26 | * @param string $command |
||
27 | * |
||
28 | * @return bool|mixed |
||
29 | */ |
||
30 | final public function sendCommand(string $command) |
||
35 |