| Conditions | 3 |
| Paths | 3 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | 2 | public function get(string $name) |
|
| 29 | {
|
||
| 30 | 2 | if (! isset($this->factories[$name])) |
|
| 31 | {
|
||
| 32 | 1 | throw new InvalidArgumentException('The helper "' . $name . '" does not exist');
|
|
| 33 | } |
||
| 34 | |||
| 35 | 1 | if (! isset($this->helpers[$name])) |
|
| 36 | {
|
||
| 37 | 1 | $this->helpers[$name] = $this->factories[$name](); |
|
| 38 | } |
||
| 39 | |||
| 40 | 1 | return $this->helpers[$name]; |
|
| 41 | } |
||
| 42 | |||
| 47 | } |