| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | 2 | public function __invoke(ContainerInterface $container, $requestedName, ?array $options = null) |
|
| 29 | { |
||
| 30 | 2 | $config = $container->get('config')['wkhtmltopdf']; |
|
| 31 | 2 | $image = new Image($config['images'] ?? null); |
|
| 32 | |||
| 33 | 2 | if ($options['url'] ?? null) { |
|
| 34 | 1 | $image->setPage($options['url']); |
|
| 35 | } |
||
| 36 | |||
| 37 | 2 | return $image; |
|
| 38 | } |
||
| 40 |