1 | <?php |
||
15 | final class FetchCommand extends AbstractCommand |
||
16 | { |
||
17 | /** |
||
18 | * @var SequenceSet |
||
19 | */ |
||
20 | private $set; |
||
21 | /** |
||
22 | * @var ItemList |
||
23 | */ |
||
24 | private $list; |
||
25 | /** |
||
26 | * @var Tag |
||
27 | */ |
||
28 | private $tag; |
||
29 | |||
30 | /** |
||
31 | * FetchCommand constructor. |
||
32 | * @param Tag $tag |
||
33 | * @param SequenceSet $set |
||
34 | * @param ItemList $list |
||
35 | */ |
||
36 | public function __construct(Tag $tag, SequenceSet $set, ItemList $list) |
||
42 | |||
43 | /** |
||
44 | * @return StreamInterface |
||
45 | */ |
||
46 | protected function createStream(): StreamInterface |
||
56 | |||
57 | /** |
||
58 | * @return Tag |
||
59 | */ |
||
60 | public function getTag(): Tag |
||
64 | } |