| 1 | <?php |
||
| 14 | final class TryRfc821UpgradeNegotiation implements NegotiationInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var ConnectionInterface |
||
| 18 | */ |
||
| 19 | private $connection; |
||
| 20 | /** |
||
| 21 | * @var string |
||
| 22 | */ |
||
| 23 | private $ehlo; |
||
| 24 | /** |
||
| 25 | * @var int |
||
| 26 | */ |
||
| 27 | private $crypto; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param ConnectionInterface $connection |
||
| 31 | * @param string $ehlo |
||
| 32 | * @param int $crypto |
||
| 33 | */ |
||
| 34 | 4 | public function __construct( |
|
| 43 | |||
| 44 | 3 | public function negotiate(Client $client): void |
|
| 64 | } |
||
| 65 |