| 1 | <?php |
||
| 10 | final class RcptToCommand implements RequestInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var EmailAddress |
||
| 14 | */ |
||
| 15 | private $recipient; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * RcptToCommand constructor. |
||
| 19 | * @param EmailAddress $recipient |
||
| 20 | */ |
||
| 21 | 2 | public function __construct(EmailAddress $recipient) |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @param ConnectionInterface $connection |
||
| 28 | * @return void |
||
| 29 | */ |
||
| 30 | 2 | public function execute(ConnectionInterface $connection) |
|
| 34 | } |