| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 57 | 1 | public function getStorage(StorageSelection $selection) |
|
| 58 | { |
||
| 59 | 1 | if (!isset($this->storageCache[$selection])) { |
|
| 60 | 1 | $provider = $this->get($selection->getProviderId()); |
|
| 61 | 1 | $storage = $provider->storage($selection); |
|
| 62 | |||
| 63 | 1 | $this->storageCache[$selection] = $storage; |
|
| 64 | } |
||
| 65 | |||
| 66 | 1 | return $this->storageCache[$selection]; |
|
| 67 | } |
||
| 68 | } |
||
| 69 |