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