Completed
Push — master ( bb5999...acd239 )
by Jakub
02:11
created
src/Numbers.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.