Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
46 | 5 | public function filter($value) |
|
47 | { |
||
48 | 5 | if (!is_string($value)) { |
|
49 | 1 | return $value; |
|
50 | } |
||
51 | |||
52 | 4 | if ($this->encodingFormat !== null) { |
|
53 | 2 | return mb_substr($value, $this->start, $this->length, $this->encodingFormat); |
|
54 | } |
||
55 | |||
56 | 2 | return mb_substr($value, $this->start, $this->length); |
|
57 | } |
||
58 | } |
||
59 |