| 1 | <?php |
||
| 10 | final class StartTlsCommand extends AbstractCommand |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var Tag |
||
| 14 | */ |
||
| 15 | private $tag; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * StartTlsCommand constructor. |
||
| 19 | * @param Tag $tag |
||
| 20 | */ |
||
| 21 | 2 | public function __construct(Tag $tag) |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @return StreamInterface |
||
| 28 | */ |
||
| 29 | 2 | public function createStream(): StreamInterface |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @return Tag |
||
| 36 | */ |
||
| 37 | 2 | public function getTag(): Tag |
|
| 41 | } |