Browse Source

renamed authenticator to auth and adjusted container.

Taylor Otwell 13 years ago
parent
commit
3ada2cbd3e
2 changed files with 10 additions and 10 deletions
  1. 1 1
      laravel/config/container.php
  2. 9 9
      laravel/security/auth.php

+ 1 - 1
laravel/config/container.php

@@ -16,7 +16,7 @@ return array(
 
 	'laravel.auth' => array('singleton' => true, 'resolver' => function($container)
 	{
-		return new Security\Authenticator($container->resolve('laravel.config'), $container->resolve('laravel.session'));
+		return new Security\Auth($container->resolve('laravel.config'), $container->resolve('laravel.session'));
 	}),
 
 

+ 9 - 9
laravel/security/authenticator.php → laravel/security/auth.php

@@ -2,7 +2,7 @@
 
 use Laravel\Session\Driver;
 
-class Authenticator {
+class Auth {
 
 	/**
 	 * The current user of the application.
@@ -12,18 +12,18 @@ class Authenticator {
 	protected $user;
 
 	/**
-	 * The session driver being used by the Auth instance.
+	 * The configuration manager instance.
 	 *
-	 * @var Session\Driver
+	 * @var Config
 	 */
-	protected $session;
+	protected $config;
 
 	/**
-	 * The configuration manager instance.
+	 * The session driver instance.
 	 *
-	 * @var Config
+	 * @var Session\Driver
 	 */
-	protected $engine;
+	protected $session;
 
 	/**
 	 * Create a new authenticator instance.
@@ -68,8 +68,8 @@ class Authenticator {
 	 * If the given credentials are valid, the user will be considered logged into the
 	 * application and their user ID will be stored in the session data.
 	 *
-	 * @param  string       $username
-	 * @param  string       $password
+	 * @param  string  $username
+	 * @param  string  $password
 	 * @return bool
 	 */
 	public function attempt($username, $password = null)