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