remove comment bloat.

This commit is contained in:
Taylor Otwell
2011-08-14 19:40:52 -05:00
parent 83ab60922b
commit d197a97aac
5 changed files with 0 additions and 106 deletions

View File

@@ -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