Skip to content

Commit 5267ee0

Browse files
authored
Update RequestValidatorTransformFactory.php
1 parent d5dd4be commit 5267ee0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Transformer/RequestValidatorTransformFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public function __construct(protected ?string $message = null) {
1111
public function transform(array $errors): array
1212
{
1313
return [
14-
'message' => is_null(this->message) ? 'Please check your input' : $this->message,
14+
'message' => is_null($this->message) ? 'Please check your input' : $this->message,
1515
'error' => $errors,
1616
];
1717
}

0 commit comments

Comments
 (0)