| Conditions | 3 |
| Paths | 3 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public static function fromSuperGlobals(): HeaderCollection |
||
| 23 | { |
||
| 24 | $headers = []; |
||
| 25 | |||
| 26 | foreach ($_SERVER as $name => $value) { |
||
| 27 | if (strpos($name, 'HTTP_') === false) { |
||
| 28 | continue; |
||
| 29 | } |
||
| 30 | $headers[] = new Header($name, $value); |
||
| 31 | } |
||
| 32 | |||
| 33 | $collection = new self($headers); |
||
| 34 | return $collection; |
||
| 35 | } |
||
| 36 | |||
| 59 |