| 1 | <?php |
||
| 11 | final class UidCommand implements RequestInterface |
||
| 12 | { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var RequestInterface |
||
| 16 | */ |
||
| 17 | private $request; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * UidCommand constructor. |
||
| 21 | * @param RequestInterface $request |
||
| 22 | */ |
||
| 23 | 1 | public function __construct(RequestInterface $request) |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @return StreamInterface |
||
| 30 | */ |
||
| 31 | 1 | public function toStream(): StreamInterface |
|
| 41 | |||
| 42 | /** |
||
| 43 | * @return Tag |
||
| 44 | */ |
||
| 45 | 1 | public function getTag(): Tag |
|
| 49 | } |