Test Failed
Push — master ( e258e4...a626ba )
by Zaahid
15:25
created

QuotedLiteralPart   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 2
c 1
b 0
f 0
dl 0
loc 5
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A filterIgnoredSpaces() 0 3 1
1
<?php
2
/**
3
 * This file is part of the ZBateson\MailMimeParser project.
4
 *
5
 * @license http://opensource.org/licenses/bsd-license.php BSD
6
 */
7
8
namespace ZBateson\MailMimeParser\Header\Part;
9
10
/**
11
 * A quoted literal header string part.  The value of the part is stripped of CR
12
 * and LF characters, but otherwise not transformed or changed in any way.
13
 *
14
 * @author Zaahid Bateson
15
 */
16
class QuotedLiteralPart extends ContainerPart
17
{
18
    protected function filterIgnoredSpaces(array $parts) : array
19
    {
20
        return $parts;
21
    }
22
}
23