Browse Source

added code example to file::upload method.

Taylor Otwell 13 years ago
parent
commit
4661ef14bc
1 changed files with 5 additions and 0 deletions
  1. 5 0
      laravel/file.php

+ 5 - 0
laravel/file.php

@@ -106,6 +106,11 @@ class File {
 	/**
 	 * Move an uploaded file to permanent storage.
 	 *
+	 * <code>
+	 *		// Upload the $_FILES['photo'] file to a permanent location
+	 *		File::upload('photo', 'path/to/new/home.jpg');
+	 * </code>
+	 *
 	 * @param  string  $key
 	 * @param  string  $path
 	 * @return bool