1 | <?php |
||
10 | final class QueuedCommand |
||
11 | { |
||
12 | /** |
||
13 | * @var Message |
||
14 | */ |
||
15 | private $command; |
||
16 | |||
17 | /** |
||
18 | * @param Message $command |
||
19 | */ |
||
20 | 7 | public function __construct(Message $command) |
|
24 | |||
25 | /** |
||
26 | * Returns the wrapped command |
||
27 | * |
||
28 | * @return Message |
||
29 | */ |
||
30 | 3 | public function getCommand() |
|
34 | } |
||
35 |