Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c5c5996

Browse files
committed
Merge pull request laravel#8375 from GrahamForks/5.0-auth-doc
[5.0] Fixed some auth phpdoc
2 parents 6124841 + 58ac253 commit c5c5996

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/Illuminate/Contracts/Auth/Registrar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public function validator(array $data);
1414
* Create a new user instance after a valid registration.
1515
*
1616
* @param array $data
17-
* @return User
17+
* @return \Illuminate\Contracts\Auth\Authenticatable
1818
*/
1919
public function create(array $data);
2020

src/Illuminate/Foundation/Auth/AuthenticatesAndRegistersUsers.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ trait AuthenticatesAndRegistersUsers {
99
/**
1010
* The Guard implementation.
1111
*
12-
* @var Guard
12+
* @var \Illuminate\Contracts\Auth\Guard
1313
*/
1414
protected $auth;
1515

1616
/**
1717
* The registrar implementation.
1818
*
19-
* @var Registrar
19+
* @var \Illuminate\Contracts\Auth\Registrar
2020
*/
2121
protected $registrar;
2222

0 commit comments

Comments
 (0)