Completed
Pull Request — master (#42)
by Frederik
03:52
created

CapabilityCommand::createStream()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
ccs 0
cts 4
cp 0
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 2
1
<?php
2
declare(strict_types=1);
3
4
namespace Genkgo\Mail\Protocol\Imap\Request;
5
6
use Genkgo\Mail\Protocol\Imap\Tag;
7
use Genkgo\Mail\Stream\StringStream;
8
use Genkgo\Mail\StreamInterface;
9
10
final class CapabilityCommand extends AbstractCommand
11
{
12
13
    /**
14
     * @var Tag
15
     */
16
    private $tag;
17
18
    /**
19
     * CapabilityCommand constructor.
20
     * @param Tag $tag
21
     */
22
    public function __construct(Tag $tag)
23
    {
24
        $this->tag = $tag;
25
    }
26
27
    /**
28
     * @return StreamInterface
29
     */
30
    public function createStream(): StreamInterface
31
    {
32
        return new StringStream('CAPABILITY');
33
    }
34
35
    /**
36
     * @return Tag
37
     */
38
    public function getTag(): Tag
39
    {
40
        return $this->tag;
41
    }
42
}