From 95f2e35d88f320824807b555d80272ee49402b4a Mon Sep 17 00:00:00 2001 From: Mohamed Said Date: Wed, 18 Jan 2017 19:27:51 +0200 Subject: [PATCH] update doc blocks --- src/Illuminate/Database/Eloquent/Builder.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Illuminate/Database/Eloquent/Builder.php b/src/Illuminate/Database/Eloquent/Builder.php index af2e58b2820f..2ef79d4f6136 100755 --- a/src/Illuminate/Database/Eloquent/Builder.php +++ b/src/Illuminate/Database/Eloquent/Builder.php @@ -414,7 +414,7 @@ public function firstOr($columns = ['*'], Closure $callback = null) * Save a new model and return the instance. * * @param array $attributes - * @return static + * @return \Illuminate\Database\Eloquent\Model */ public function create(array $attributes = []) { @@ -431,7 +431,7 @@ public function create(array $attributes = []) * Save a new model and return the instance. Allow mass-assignment. * * @param array $attributes - * @return static + * @return \Illuminate\Database\Eloquent\Model */ public function forceCreate(array $attributes) {