From 124376f3a49edb5acf224942b99155aef60f2c52 Mon Sep 17 00:00:00 2001 From: ARCANEDEV Date: Tue, 5 Sep 2017 13:51:29 +0100 Subject: [PATCH] [5.5] Fixing the doc comments (#20979) Fixing the `@return` type for the `Illuminate\Contracts\Validation@errors()` method. --- Validation/Validator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Validation/Validator.php b/Validation/Validator.php index 26c022f..3404df2 100644 --- a/Validation/Validator.php +++ b/Validation/Validator.php @@ -41,7 +41,7 @@ public function after($callback); /** * Get all of the validation error messages. * - * @return array + * @return \Illuminate\Support\MessageBag */ public function errors(); }