Skip to content

Commit

Permalink
Fix whitespace issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mallardduck committed Sep 20, 2020
1 parent e5c2a40 commit 86babcf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/Illuminate/Validation/Concerns/ReplacesAttributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,6 @@ protected function replaceStartsWith($message, $attribute, $rule, $parameters)
return str_replace(':values', implode(', ', $parameters), $message);
}


/**
* Replace all place-holders for the unfilled_if rule.
*
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Validation/Concerns/ValidatesAttributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -1740,7 +1740,7 @@ public function validateUnfilledIf($attribute, $value, $parameters)

[$values, $other] = $this->prepareValuesAndOther($parameters);

if (!is_null($other)) {
if (! is_null($other)) {
return false;
}

Expand Down

0 comments on commit 86babcf

Please sign in to comment.