1 | <?php |
||
10 | class CacheBootloader extends Bootloader |
||
11 | { |
||
12 | const BINDINGS = [ |
||
13 | 'cache' => CacheInterface::class, |
||
14 | CacheInterface::class => SimpleCacheAdapter::class |
||
15 | ]; |
||
16 | |||
17 | const SINGLETONS = [ |
||
18 | CacheItemPoolInterface::class => [self::class, 'makeCache'] |
||
19 | ]; |
||
20 | |||
21 | protected function makeCache(Config $config): CacheItemPoolInterface |
||
25 | } |