Skip to content

Commit

Permalink
Merge pull request #8375 from GrahamForks/5.0-auth-doc
Browse files Browse the repository at this point in the history
[5.0] Fixed some auth phpdoc
  • Loading branch information
taylorotwell committed Apr 10, 2015
2 parents 6124841 + 58ac253 commit c5c5996
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Illuminate/Contracts/Auth/Registrar.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public function validator(array $data);
* Create a new user instance after a valid registration.
*
* @param array $data
* @return User
* @return \Illuminate\Contracts\Auth\Authenticatable
*/
public function create(array $data);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ trait AuthenticatesAndRegistersUsers {
/**
* The Guard implementation.
*
* @var Guard
* @var \Illuminate\Contracts\Auth\Guard
*/
protected $auth;

/**
* The registrar implementation.
*
* @var Registrar
* @var \Illuminate\Contracts\Auth\Registrar
*/
protected $registrar;

Expand Down

0 comments on commit c5c5996

Please sign in to comment.