1 | <?php |
||
8 | final class EhloResponse |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | private $greeting = ''; |
||
14 | |||
15 | /** |
||
16 | * @var array<string, bool> |
||
17 | */ |
||
18 | private $advertisements = []; |
||
19 | |||
20 | /** |
||
21 | * @param Reply $reply |
||
22 | */ |
||
23 | 10 | public function __construct(Reply $reply) |
|
46 | |||
47 | /** |
||
48 | * @param string $command |
||
49 | * @return bool |
||
50 | */ |
||
51 | 10 | public function isAdvertising(string $command) |
|
59 | } |
||
60 |