Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
43 | 3 | public function getItemPool(string $driver): CacheItemPoolInterface |
|
44 | { |
||
45 | 3 | if (!isset($this->pools[$driver])) { |
|
46 | 3 | $poolClass = 'PhpAbac\\Cache\\Pool\\' . ucfirst($driver) . 'CacheItemPool'; |
|
47 | 3 | $this->pools[$driver] = new $poolClass($this->options); |
|
48 | } |
||
49 | 3 | return $this->pools[$driver]; |
|
50 | } |
||
51 | } |
||
52 |