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