Browse Source

Fix typo in comments

Jeffrey Way 12 years ago
parent
commit
c659a92603
2 changed files with 3 additions and 3 deletions
  1. 1 1
      laravel/auth/drivers/eloquent.php
  2. 2 2
      laravel/auth/drivers/fluent.php

+ 1 - 1
laravel/auth/drivers/eloquent.php

@@ -21,7 +21,7 @@ class Eloquent extends Driver {
 	/**
 	 * Attempt to log a user into the application.
 	 *
-	 * @param  array  $arguments
+	 * @param  array $arguments
 	 * @return void
 	 */
 	public function attempt($arguments = array())

+ 2 - 2
laravel/auth/drivers/fluent.php

@@ -25,7 +25,7 @@ class Fluent extends Driver {
 	/**
 	 * Attempt to log a user into the application.
 	 *
-	 * @param  array  $arguments
+	 * @param  array $arguments
 	 * @return void
 	 */
 	public function attempt($arguments = array())
@@ -49,7 +49,7 @@ class Fluent extends Driver {
 	/**
 	 * Get the user from the database table.
 	 *
-	 * @param  mixed  $array
+	 * @param  array  $arguments
 	 * @return mixed
 	 */
 	protected function get_user($arguments)