From 0e39941632f8f8401af6383c3225d65064948708 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 9 Aug 2011 14:21:51 -0500 Subject: [PATCH] Fix spacing on Auth doc code examples. --- system/auth.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/system/auth.php b/system/auth.php index 9db184fd..e7f914c8 100644 --- a/system/auth.php +++ b/system/auth.php @@ -31,10 +31,10 @@ class Auth { * Determine if the current user of the application is authenticated. * * - * if (Auth::check()) - * { - * // The user is logged in... - * } + * if (Auth::check()) + * { + * // The user is logged in... + * } * * * @return bool @@ -53,7 +53,7 @@ public static function check() * of the closure will be cached and returned. * * - * $email = Auth::user()->email; + * $email = Auth::user()->email; * * * @return object @@ -79,10 +79,10 @@ public static function user() * by the Hash class when authenticating. * * - * if (Auth::login('test@gmail.com', 'secret')) - * { - * // The credentials are valid... - * } + * if (Auth::login('test@gmail.com', 'secret')) + * { + * // The credentials are valid... + * } * * * @param string $username