1 | <?php |
||
5 | final class ReceivedCommand |
||
6 | { |
||
7 | |||
8 | private $queueName; |
||
9 | private $id; |
||
10 | private $serialized; |
||
11 | |||
12 | 3 | public function __construct(string $queueName, string $id, string $serialized) |
|
18 | |||
19 | 3 | public function getQueueName(): string |
|
23 | |||
24 | 3 | public function getId(): string |
|
28 | |||
29 | 3 | public function getSerialized(): string |
|
33 | } |
||
34 |