| 1 | <?php |
||
| 11 | final class UidCommand implements RequestInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var RequestInterface |
||
| 15 | */ |
||
| 16 | private $request; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param RequestInterface $request |
||
| 20 | */ |
||
| 21 | 1 | public function __construct(RequestInterface $request) |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @return StreamInterface |
||
| 28 | */ |
||
| 29 | 1 | public function toStream(): StreamInterface |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @return Tag |
||
| 42 | */ |
||
| 43 | 1 | public function getTag(): Tag |
|
| 47 | } |
||
| 48 |