Skip to content

Commit 8b19cd8

Browse files
committed
Fix CS
1 parent 8ed68ce commit 8b19cd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Validation/Rules/JsonSchema.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ protected function formatValidationError(ValidationError $error): string
9797
$keyword = $error->keyword();
9898
$dataPath = implode('.', $error->data()->path() ?? []);
9999

100-
return $dataPath !== '' ?
100+
return $dataPath !== '' ?
101101
"Validation failed at '$dataPath': $keyword" :
102102
"Validation failed: $keyword";
103103
}

0 commit comments

Comments
 (0)