@@ -22,7 +22,7 @@ |
||
| 22 | 22 | * Check whether a number is within boundaries |
| 23 | 23 | */ |
| 24 | 24 | public static function isInRange(int $number, int $min, int $max): bool { |
| 25 | - return ($number >= $min AND $number <= $max); |
|
| 25 | + return ($number >= $min and $number <= $max); |
|
| 26 | 26 | } |
| 27 | 27 | } |
| 28 | 28 | ?> |
| 29 | 29 | \ No newline at end of file |