Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
23 | 3 | public function __construct(array $dateFormatters, bool $filterUnique = true) |
|
24 | { |
||
25 | 3 | if ($filterUnique) { |
|
26 | 1 | $formatterCombiner = new FormatterCombiner($dateFormatters, false); |
|
27 | 1 | $formatterCombiner->setNext(new UniqueFilter()); |
|
28 | 1 | $dateFormatters = [$formatterCombiner]; |
|
29 | } |
||
30 | |||
31 | 3 | $this->dateFormatters = $dateFormatters; |
|
32 | 3 | } |
|
45 |