Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
37 | 1 | private static function normalizeStatus($status) |
|
38 | { |
||
39 | switch ($status) { |
||
40 | 1 | case Candidate::STATUS_QUEUED: |
|
41 | 1 | $status = sprintf('<comment>%s</comment>', $status); |
|
42 | 1 | break; |
|
43 | 1 | case Candidate::STATUS_HAS_SYNTAX_ERROR: |
|
44 | 1 | $status = sprintf('<error>%s</error>', $status); |
|
45 | 1 | break; |
|
46 | } |
||
47 | |||
48 | 1 | return $status; |
|
49 | } |
||
50 | |||
68 |