| Conditions | 4 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 25 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
||
| 26 | { |
||
| 27 | $config = $container->get('config')['phpwkhtmltopdf']; |
||
| 28 | $image = new Image(isset($config['images']) ? $config['images'] : null); |
||
| 29 | |||
| 30 | if (isset($options) && isset($options['url'])) { |
||
| 31 | $image->setPage($options['url']); |
||
| 32 | } |
||
| 33 | |||
| 34 | return $image; |
||
| 35 | } |
||
| 36 | } |
||
| 37 |