Commit 0e399416 authored by Taylor Otwell's avatar Taylor Otwell

Fix spacing on Auth doc code examples.

parent 7da624e0
...@@ -31,10 +31,10 @@ class Auth { ...@@ -31,10 +31,10 @@ class Auth {
* Determine if the current user of the application is authenticated. * Determine if the current user of the application is authenticated.
* *
* <code> * <code>
* if (Auth::check()) * if (Auth::check())
* { * {
* // The user is logged in... * // The user is logged in...
* } * }
* </code> * </code>
* *
* @return bool * @return bool
...@@ -53,7 +53,7 @@ class Auth { ...@@ -53,7 +53,7 @@ class Auth {
* of the closure will be cached and returned. * of the closure will be cached and returned.
* *
* <code> * <code>
* $email = Auth::user()->email; * $email = Auth::user()->email;
* </code> * </code>
* *
* @return object * @return object
...@@ -79,10 +79,10 @@ class Auth { ...@@ -79,10 +79,10 @@ class Auth {
* by the Hash class when authenticating. * by the Hash class when authenticating.
* *
* <code> * <code>
* if (Auth::login('test@gmail.com', 'secret')) * if (Auth::login('test@gmail.com', 'secret'))
* { * {
* // The credentials are valid... * // The credentials are valid...
* } * }
* </code> * </code>
* *
* @param string $username * @param string $username
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment