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