1 | <?php |
||
7 | class GreetingText implements ThreadSetting, \JsonSerializable |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $text; |
||
13 | |||
14 | /** |
||
15 | * @param string $text |
||
16 | */ |
||
17 | 5 | public function __construct($text) |
|
25 | |||
26 | /** |
||
27 | * return array |
||
28 | */ |
||
29 | 1 | public function getText() |
|
33 | |||
34 | /** |
||
35 | * @inheritdoc |
||
36 | */ |
||
37 | 2 | public function jsonSerialize() |
|
43 | } |
||
44 |