| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | 1 | public function __invoke(array $options) |
|
| 16 | { |
||
| 17 | 1 | $format = $options['format'] ?? null; |
|
| 18 | 1 | $dateFormat = $options['dateFormat'] ?? null; |
|
| 19 | 1 | $allowInlineLineBreaks = (bool) ($options['allowInlineLineBreaks'] ?? false); |
|
| 20 | 1 | $ignoreEmptyContextAndExtra = (bool) ($options['ignoreEmptyContextAndExtra'] ?? false); |
|
| 21 | |||
| 22 | 1 | return new LineFormatter($format, $dateFormat, $allowInlineLineBreaks, $ignoreEmptyContextAndExtra); |
|
| 23 | } |
||
| 24 | } |
||
| 25 |