Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | 1 | public function pass(ClassConst $stmt, Context $context) |
|
20 | { |
||
21 | 1 | if ($stmt->consts[0]->name != strtoupper($stmt->consts[0]->name)) { |
|
22 | 1 | $context->notice( |
|
23 | 1 | 'constant.naming', |
|
24 | 1 | 'Constant names should be all uppercase.', |
|
25 | $stmt |
||
26 | 1 | ); |
|
27 | |||
28 | 1 | return true; |
|
29 | } |
||
30 | 1 | return false; |
|
31 | } |
||
32 | |||
56 |