| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 12 |
| Ratio | 100 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | 1 | public function __invoke(array $options) |
|
| 14 | { |
||
| 15 | 1 | $level = (int) ($options['level'] ?? Logger::DEBUG); |
|
| 16 | 1 | $skipPartials = (array) ($options['skipClassesPartials'] ?? []); |
|
| 17 | 1 | $skipFrameCount = (int) ($options['skipStackFramesCount'] ?? 0); |
|
| 18 | |||
| 19 | 1 | return new IntrospectionProcessor( |
|
| 20 | 1 | $level, |
|
| 21 | 1 | $skipPartials, |
|
| 22 | 1 | $skipFrameCount |
|
| 23 | ); |
||
| 24 | } |
||
| 25 | } |
||
| 26 |