@@ -133,6 +133,7 @@ |
||
| 133 | 133 | * |
| 134 | 134 | * @param string $message |
| 135 | 135 | * @param mixed ...$args Arguments to insert into the message |
| 136 | + * @param string $args |
|
| 136 | 137 | * @return static |
| 137 | 138 | */ |
| 138 | 139 | public static function error($message, ...$args) |
@@ -57,7 +57,7 @@ |
||
| 57 | 57 | $prefix = $this->translate($prefix); |
| 58 | 58 | |
| 59 | 59 | foreach ($validation->getErrors() as $err) { |
| 60 | - $this->errors[] = ($prefix ? trim($prefix) . ' ' : '') . $err; |
|
| 60 | + $this->errors[] = ($prefix ? trim($prefix).' ' : '').$err; |
|
| 61 | 61 | } |
| 62 | 62 | } |
| 63 | 63 | |