Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
23 | public static function info($code) |
||
24 | { |
||
25 | $codes = (array) json_decode(file_get_contents(__DIR__.'/httpcodes.json'), true); |
||
26 | if (array_key_exists($code, $codes)) { |
||
27 | return $codes[$code]; |
||
28 | } |
||
29 | return ['level' => 'Desconhecido', 'description' => 'Desconhecido', 'means' => 'Desconhecido']; |
||
30 | } |
||
31 | } |