From 5eef0023742f32fb408e8203a3d985bb8e532538 Mon Sep 17 00:00:00 2001 From: apathetic012 Date: Sun, 29 Jul 2012 19:12:44 +0800 Subject: [PATCH] add output of File::mime() example Signed-off-by: apathetic012 --- laravel/documentation/files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/documentation/files.md b/laravel/documentation/files.md index a27d10e5..2a3d055d 100644 --- a/laravel/documentation/files.md +++ b/laravel/documentation/files.md @@ -65,7 +65,7 @@ ## Getting MIME Types #### 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.