Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
21 | 1 | protected function configure() |
|
22 | { |
||
23 | // bind ssr cache |
||
24 | 1 | $this->bind(CacheInterface::class)->annotatedWith(SsrCacheConfig::class)->to(ApcuCache::class); |
|
25 | // install module |
||
26 | 1 | $this->install(new CacheSsrModule()); |
|
27 | 1 | $this->install(new SsrModule(__DIR__ . '/Fake/build')); |
|
28 | 1 | } |
|
29 | } |
||
30 |