Conditions | 3 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
63 | 5 | protected function createStream(): StreamInterface |
|
64 | { |
||
65 | 5 | return new StringStream( |
|
66 | 5 | \sprintf( |
|
67 | 5 | 'APPEND %s %s%s{%s}', |
|
68 | 5 | (string)$this->mailbox, |
|
69 | 5 | $this->flags ? (string)$this->flags . ' ' : '', |
|
70 | 5 | $this->internalDate ? '"'.$this->internalDate->format('d-D-Y H:i:sO') . '" ' : '', |
|
71 | 5 | (string)$this->size |
|
72 | ) |
||
73 | ); |
||
74 | } |
||
75 | |||
84 |