@@ -43,7 +43,7 @@ |
||
| 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 | } |
@@ -45,7 +45,7 @@ |
||
| 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 | |