Conditions | 4 |
Paths | 5 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
41 | 20 | protected function applyFilters($item) |
|
42 | { |
||
43 | 20 | if (is_string($item)) { |
|
44 | 1 | return $item; |
|
45 | } |
||
46 | |||
47 | 19 | foreach ($this->filters as $filter) { |
|
48 | 18 | $item = $filter->transform($item, $this); |
|
49 | } |
||
50 | |||
51 | 19 | if (isset($item['header'])) { |
|
52 | 1 | $item = $item['header']; |
|
53 | } |
||
54 | |||
55 | 19 | return $item; |
|
56 | } |
||
57 | } |
||
58 |