Test Failed
Push — main ( 4188bc...4df161 )
by Dimitri
12:56
created
src/Rules/Gt.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,11 +29,11 @@
 block discarded – undo
29 29
             $value = (string) $value;
30 30
         }
31 31
 
32
-        if (! is_string($value)) {
32
+        if (!is_string($value)) {
33 33
             return false;
34 34
         }
35 35
 
36
-        if (! is_numeric($compare = $this->parameter('value'))) {
36
+        if (!is_numeric($compare = $this->parameter('value'))) {
37 37
             $compare = $this->getAttribute()->getValue($compare);
38 38
         }
39 39
 
Please login to merge, or discard this patch.
src/Rules/BeforeOrEqual.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,15 +35,15 @@
 block discarded – undo
35 35
         $this->requireParameters($this->fillableParams);
36 36
         $time = $this->parameter('time');
37 37
 
38
-        if (! $this->isValidDate($value)) {
38
+        if (!$this->isValidDate($value)) {
39 39
             throw $this->throwException($value);
40 40
         }
41 41
 
42
-        if (! $this->isValidDate($time)) {
42
+        if (!$this->isValidDate($time)) {
43 43
             $time = $this->getAttribute()->getValue($time);
44 44
         }
45 45
 
46
-        if (! $this->isValidDate($time)) {
46
+        if (!$this->isValidDate($time)) {
47 47
             throw $this->throwException($time);
48 48
         }
49 49
 
Please login to merge, or discard this patch.