Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function __invoke(ContainerInterface $container, string $requestedName, array $options = null): GitProcessor |
||
21 | { |
||
22 | $options = $options ?? $this->getServiceOptions($container, $requestedName); |
||
23 | |||
24 | $level = $options['level'] ?? Logger::DEBUG; |
||
25 | |||
26 | return new GitProcessor($level); |
||
27 | } |
||
29 |