Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function __invoke( |
||
12 | ContainerInterface $container, |
||
13 | $requestedName, |
||
14 | array $options = null |
||
15 | ) { |
||
16 | $imageGenerator = $container->get(ImageGenerator::class); |
||
17 | |||
18 | $cache = $container->get('Cache'); |
||
19 | $cache->clearExpired(); |
||
20 | |||
21 | return new ImageGeneratorCache($imageGenerator, $cache); |
||
22 | } |
||
24 |