Browse Source

Clean up Input::upload method.

Taylor Otwell 13 years ago
parent
commit
1ed1fdf6fc
1 changed files with 2 additions and 2 deletions
  1. 2 2
      laravel/input.php

+ 2 - 2
laravel/input.php

@@ -181,7 +181,7 @@ class Input {
 	 */
 	public static function upload($key, $path)
 	{
-		return array_key_exists($key, $_FILES) ? File::upload($key, $path, $_FILES) : false;
+		return File::upload($key, $path);
 	}
 
-}
+}