Browse Source

add output of File::mime() example

Signed-off-by: apathetic012 <apathetic012@gmail.com>
apathetic012 12 years ago
parent
commit
5eef002374
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/documentation/files.md

+ 1 - 1
laravel/documentation/files.md

@@ -65,7 +65,7 @@ The **is** method does not simply check the file extension. The Fileinfo PHP ext
 
 #### Getting the MIME type associated with an extension:
 
-	echo File::mime('gif');
+	echo File::mime('gif'); // outputs 'image/gif'
 
 > **Note:** This method simply returns the MIME type defined for the extension in the **application/config/mimes.php** file.