1 | <?php |
||
9 | final class DeleteStreamRequestFactory implements RequestFactoryInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var StreamId |
||
13 | */ |
||
14 | private $streamId; |
||
15 | |||
16 | /** |
||
17 | * @param StreamId $streamId |
||
18 | */ |
||
19 | public function __construct(StreamId $streamId) |
||
23 | |||
24 | /** |
||
25 | * @return RequestInterface |
||
26 | */ |
||
27 | public function buildRequest(): RequestInterface |
||
37 | } |
||
38 |