Browse Source

moved file::upload to input::upload.

Taylor Otwell 13 years ago
parent
commit
3d83b65bb7
2 changed files with 12 additions and 11 deletions
  1. 0 11
      laravel/file.php
  2. 12 0
      laravel/input.php

+ 0 - 11
laravel/file.php

@@ -154,15 +154,4 @@ class File {
 		return $response;
 	}
 
-	/**
-	 * Move an uploaded file to storage.
-	 *
-	 * @param  string  $key
-	 * @param  string  $path
-	 * @return bool
-	 */
-	public static function upload($key, $path)
-	{
-		return array_key_exists($key, $_FILES) ? move_uploaded_file($_FILES[$key]['tmp_name'], $path) : false;
-	}
 }

+ 12 - 0
laravel/input.php

@@ -86,6 +86,18 @@ class Input {
 		return Arr::get($_FILES, $key, $default);
 	}
 
+	/**
+	 * Move an uploaded file to permanent storage.
+	 *
+	 * @param  string  $key
+	 * @param  string  $path
+	 * @return bool
+	 */
+	public static function upload($key, $path)
+	{
+		return array_key_exists($key, $_FILES) ? move_uploaded_file($_FILES[$key]['tmp_name'], $path) : false;
+	}
+
 	/**
 	 * Hydrate the input data for the request.
 	 *