Test Failed
Push — main ( 4188bc...4df161 )
by Dimitri
12:56
created
src/Rules/PresentWithAll.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
         $this->setParameterTextValues($fields, 'values');
44 44
 
45 45
         foreach ($fields as $field) {
46
-            if (! $this->validation->hasValue($field)) {
46
+            if (!$this->validation->hasValue($field)) {
47 47
                 return true;
48 48
             }
49 49
         }
Please login to merge, or discard this patch.
src/Rules/PresentUnless.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
         $this->setParameterTextValues((array) $anotherAttribute, 'other_attribute');
46 46
         $this->setParameterTextValues((array) $definedValues, 'other_value');
47 47
 
48
-        if (! in_array($anotherValue, $definedValues, is_bool($anotherValue) || null === $definedValues)) {
48
+        if (!in_array($anotherValue, $definedValues, is_bool($anotherValue) || null === $definedValues)) {
49 49
             $validator        = $this->validation->getValidator();
50 50
             $presentValidator = $validator('present');
51 51
 
Please login to merge, or discard this patch.