Passed
Push — master ( 911a0c...eea5e3 )
by Derek Stephen
02:48 queued 01:01
created
src/Validator/MaxLength.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,6 +19,6 @@
 block discarded – undo
19 19
 
20 20
     public function getMessages(): array
21 21
     {
22
-        return ['Exceeded maximum length of ' . $this->maxLength];
22
+        return ['Exceeded maximum length of '.$this->maxLength];
23 23
     }
24 24
 }
Please login to merge, or discard this patch.
src/Validator/MinLength.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,6 +19,6 @@
 block discarded – undo
19 19
 
20 20
     public function getMessages(): array
21 21
     {
22
-        return ['Minimum length must be ' . $this->minLength];
22
+        return ['Minimum length must be '.$this->minLength];
23 23
     }
24 24
 }
Please login to merge, or discard this patch.