| Conditions | 3 |
| Paths | 3 |
| Total Lines | 18 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function pass(ClassConst $stmt, Context $context) |
||
| 23 | { |
||
| 24 | $result = false; |
||
| 25 | |||
| 26 | foreach ($stmt->consts as $const) { |
||
| 27 | if ($const->name != strtoupper($const->name)) { |
||
| 28 | $context->notice( |
||
| 29 | 'constant.naming', |
||
| 30 | 'Constant names should be all uppercase.', |
||
| 31 | $stmt |
||
| 32 | ); |
||
| 33 | |||
| 34 | $result = true; |
||
| 35 | } |
||
| 36 | } |
||
| 37 | |||
| 38 | return $result; |
||
| 39 | } |
||
| 40 | |||
| 51 |