Completed
Push — master ( 7d0959...f2e936 )
by Arnold
02:54
created
src/ValidationResult.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -133,6 +133,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
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
     
Please login to merge, or discard this patch.