1 | <?php |
||
5 | class Line implements LineInterface |
||
6 | { |
||
7 | /** |
||
8 | * @var \JsonSerializable |
||
9 | */ |
||
10 | protected $payload; |
||
11 | |||
12 | /** |
||
13 | * @param \JsonSerializable $payload |
||
14 | */ |
||
15 | 7 | public function __construct(\JsonSerializable $payload, array $options) |
|
16 | { |
||
17 | 7 | $this->payload = $payload; |
|
18 | } |
||
19 | |||
20 | /** |
||
21 | * @return \JsonSerializable |
||
22 | */ |
||
23 | 2 | public function getPayload() |
|
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | public function __toString() |
||
35 | } |
||
36 |