File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -102,12 +102,12 @@ private static function fallbackImagetype($filename)
102
102
* Return the Image Type from a file
103
103
*
104
104
* @param string $filename
105
- * @param bool $userFallbackFunction
105
+ * @param bool $useFallbackFunction
106
106
* @return int|bool
107
107
*/
108
- public static function imagetype ($ filename , $ userFallbackFunction = false )
108
+ public static function imagetype ($ filename , $ useFallbackFunction = false )
109
109
{
110
- if ($ userFallbackFunction || !function_exists ('exif_imagetype ' )) {
110
+ if ($ useFallbackFunction || !function_exists ('exif_imagetype ' )) {
111
111
return self ::fallbackImagetype ($ filename );
112
112
}
113
113
Original file line number Diff line number Diff line change 22
22
* @version ##VERSION##, ##DATE##
23
23
**************************************************************************************
24
24
25
+ Changes in branch for release 0.9.0 :
26
+ - QA: (Progi1984) - Documentation
27
+
25
28
Changes in branch for release 0.8.1 :
26
29
- Feature: (bskrtich, gabrielbull) - Added fallback for computers that do not have exif_imagetype
27
30
You can’t perform that action at this time.
0 commit comments