| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | 1 | public function create(CachePoolConfigurationInterface $configuration): CacheItemPoolInterface |
|
| 24 | { |
||
| 25 | 1 | return new ArrayAdapter( |
|
| 26 | 1 | $configuration->getDefaultLifetime(), |
|
| 27 | 1 | $configuration->isStoreSerialized(), |
|
| 28 | 1 | $configuration->getDefaultLifetime(), |
|
| 29 | 1 | $configuration->getMaxItems(), |
|
| 30 | 1 | ); |
|
| 38 |