Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
21 | 491 | public function pass(Scalar\LNumber $lNum, Context $context) |
|
22 | { |
||
23 | 491 | if ($lNum->getAttribute('kind') != Scalar\LNumber::KIND_DEC) { |
|
24 | 487 | $context->notice( |
|
25 | 487 | 'l_number_kind', |
|
26 | 487 | 'Avoid using octal, hexadecimal or binary', |
|
27 | $lNum |
||
28 | 487 | ); |
|
29 | 487 | return true; |
|
30 | } |
||
31 | |||
32 | 5 | return false; |
|
33 | } |
||
34 | |||
45 |