| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | 2 | public function createServerVariables(): Objects\ServerVariables |
|
| 23 | { |
||
| 24 | 2 | return new Objects\ServerVariables( |
|
| 25 | 2 | array_map( |
|
| 26 | static function (Objects\ServerVariableFactory $factory): Objects\ServerVariable { |
||
| 27 | 2 | return $factory->createServerVariable(); |
|
| 28 | 2 | }, |
|
| 29 | 2 | $this->getVariables() |
|
| 30 | ) |
||
| 31 | ); |
||
| 32 | } |
||
| 33 | |||
| 46 |