Conditions | 3 |
Paths | 3 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
28 | 2 | public static function toString($code) |
|
29 | { |
||
30 | switch ($code) { |
||
31 | 2 | case self::NOT_LOGGED_IN: |
|
32 | 1 | return 'not logged in'; |
|
33 | 2 | case self::ACCESS_DENIED: |
|
34 | 2 | return 'you are not allowed to view this resource'; |
|
35 | default: |
||
36 | 1 | return 'unknown error occurred with code ' . $code; |
|
37 | } |
||
39 | } |