Skip to content

Commit 709f17f

Browse files
authored
Style guide fix
1 parent 634017d commit 709f17f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Validation/Rules/RequiredIf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class RequiredIf
1919
*/
2020
public function __construct($condition)
2121
{
22-
if(!is_string($condition) && (is_bool($condition) || is_callable($condition))) {
22+
if(! is_string($condition) && (is_bool($condition) || is_callable($condition))) {
2323
$this->condition = $condition;
2424
} else {
2525
throw new InvalidArgumentException("Condition type must be 'callable' or 'bool'.");

0 commit comments

Comments
 (0)