Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6124841 + 58ac253 commit c5c5996Copy full SHA for c5c5996
2 files changed
src/Illuminate/Contracts/Auth/Registrar.php
@@ -14,7 +14,7 @@ public function validator(array $data);
14
* Create a new user instance after a valid registration.
15
*
16
* @param array $data
17
- * @return User
+ * @return \Illuminate\Contracts\Auth\Authenticatable
18
*/
19
public function create(array $data);
20
src/Illuminate/Foundation/Auth/AuthenticatesAndRegistersUsers.php
@@ -9,14 +9,14 @@ trait AuthenticatesAndRegistersUsers {
9
/**
10
* The Guard implementation.
11
12
- * @var Guard
+ * @var \Illuminate\Contracts\Auth\Guard
13
protected $auth;
* The registrar implementation.
- * @var Registrar
+ * @var \Illuminate\Contracts\Auth\Registrar
21
protected $registrar;
22
0 commit comments