Completed
Push — master ( bb5999...acd239 )
by Jakub
02:11
created
src/Filter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Nexendrie\Utils;
5 5
 
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 final class Filter {
15 15
   use \Nette\StaticClass;
16 16
   
17
-  public const OPERATORS = ["==", ">=", ">", "<=", "<",];
17
+  public const OPERATORS = ["==", ">=", ">", "<=", "<", ];
18 18
   
19 19
   public static function getOperator(string $input): string {
20 20
     foreach(static::OPERATORS as $operator) {
Please login to merge, or discard this patch.
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.