remove comment bloat.
This commit is contained in:
@@ -30,13 +30,6 @@ class Auth {
|
||||
/**
|
||||
* Determine if the current user of the application is authenticated.
|
||||
*
|
||||
* <code>
|
||||
* if (Auth::check())
|
||||
* {
|
||||
* // The user is logged in...
|
||||
* }
|
||||
* </code>
|
||||
*
|
||||
* @return bool
|
||||
* @see login
|
||||
*/
|
||||
@@ -52,10 +45,6 @@ class Auth {
|
||||
* the "by_id" closure in the authentication configuration file. The result
|
||||
* of the closure will be cached and returned.
|
||||
*
|
||||
* <code>
|
||||
* $email = Auth::user()->email;
|
||||
* </code>
|
||||
*
|
||||
* @return object
|
||||
* @see $user
|
||||
*/
|
||||
@@ -78,13 +67,6 @@ class Auth {
|
||||
* The password passed to the method should be plain text, as it will be hashed
|
||||
* by the Hash class when authenticating.
|
||||
*
|
||||
* <code>
|
||||
* if (Auth::login('test@gmail.com', 'secret'))
|
||||
* {
|
||||
* // The credentials are valid...
|
||||
* }
|
||||
* </code>
|
||||
*
|
||||
* @param string $username
|
||||
* @param string $password
|
||||
* @return bool
|
||||
|
||||
Reference in New Issue
Block a user