Skip to content

Commit e903f23

Browse files
driesvintsgithub-actions[bot]
authored andcommitted
Fix code styling
1 parent 787a8cf commit e903f23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Rules/DoesNotContainUrlRule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function validate(string $attribute, mixed $value, Closure $fail): void
1515
$fails = collect(explode(' ', $value))->contains(function ($word) {
1616
return $this->validateRequired('word', $word) && $this->validateUrl('word', $word);
1717
});
18-
18+
1919
if ($fails) {
2020
$fail('The :attribute field cannot contain an url.');
2121
}

0 commit comments

Comments
 (0)