Conditions | 5 |
Paths | 5 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 5 |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
20 | 1 | public function icon() |
|
21 | { |
||
22 | 1 | switch ($this->type) { |
|
23 | 1 | case 'info': return 'info'; break; |
|
|
|||
24 | 1 | case 'warning': return 'exclamation-triangle'; break; |
|
25 | 1 | case 'success': return 'check'; break; |
|
26 | 1 | case 'danger': return 'ban'; break; |
|
27 | 1 | default: return 'exclamation'; break; |
|
28 | } |
||
36 |
The
break
statement is not necessary if it is preceded for example by areturn
statement:If you would like to keep this construct to be consistent with other
case
statements, you can safely mark this issue as a false-positive.