Browse Source

refactoring the file::is method.

Taylor Otwell 13 years ago
parent
commit
ba1d2a6238
1 changed files with 6 additions and 2 deletions
  1. 6 2
      laravel/file.php

+ 6 - 2
laravel/file.php

@@ -157,10 +157,14 @@ class File {
 	{
 		$mimes = Config::get('mimes');
 
+		$mime = finfo_file(finfo_open(FILEINFO_MIME_TYPE), $path);
+
+		// The MIME configuration file contains an array of file extensions and
+		// their associated MIME types. We will spin through each extension the
+		// developer wants to check to determine if the file's MIME type is in
+		// the list of MIMEs we have for that extension.
 		foreach ((array) $extensions as $extension)
 		{
-			$mime = finfo_file(finfo_open(FILEINFO_MIME_TYPE), $path);
-
 			if (isset($mimes[$extension]) and in_array($mime, (array) $mimes[$extension]))
 			{
 				return true;