| 1 | <?php |
||
| 10 | final class ReceiveWelcomeNegotiation implements NegotiationInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var ConnectionInterface |
||
| 14 | */ |
||
| 15 | private $connection; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * ReceiveWelcomeNegotiation constructor. |
||
| 19 | * @param ConnectionInterface $connection |
||
| 20 | */ |
||
| 21 | 23 | public function __construct(ConnectionInterface $connection) |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @param Client $client |
||
| 28 | */ |
||
| 29 | 5 | public function negotiate(Client $client): void |
|
| 33 | } |