Conditions | 4 |
Paths | 4 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
35 | public static function expirationIsValid($mes, $ano) |
||
36 | { |
||
37 | if ((int) Date::yearToDatabase($ano) < (int) Carbon::now()->year) { |
||
38 | return false; |
||
39 | } |
||
40 | if ((int) Date::yearToDatabase($ano) == (int) Carbon::now()->year) { |
||
41 | if ((int) Date::monthToDatabase($mes) < (int) Carbon::now()->month) { |
||
42 | return false; |
||
43 | } |
||
44 | } |
||
45 | return true; |
||
46 | } |
||
64 |