Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
18 | public function create(AdminResource $definition): AdminResource |
||
19 | { |
||
20 | $resourceName = $definition->getName(); |
||
21 | |||
22 | if (!\array_key_exists($resourceName, $this->cache)) { |
||
23 | $this->cache[$resourceName] = $this->decorated->create($definition); |
||
24 | } |
||
25 | |||
26 | return $this->cache[$resourceName]; |
||
27 | } |
||
29 |