Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
46 | 5 | public function __construct( |
|
47 | Tag $tag, |
||
48 | MailboxName $mailbox, |
||
49 | int $size, |
||
50 | FlagParenthesizedList $flags = null, |
||
51 | \DateTimeImmutable $internalDate = null |
||
52 | ) { |
||
53 | 5 | $this->tag = $tag; |
|
54 | 5 | $this->mailbox = $mailbox; |
|
55 | 5 | $this->flags = $flags; |
|
56 | 5 | $this->size = $size; |
|
57 | 5 | $this->internalDate = $internalDate; |
|
58 | 5 | } |
|
59 | |||
84 |