Remove trailing whitespace

This commit is contained in:
Kijin Sung 2023-01-17 20:57:44 +09:00
parent 3b0030e82b
commit a9f72a5cd2
81 changed files with 2455 additions and 2455 deletions

View file

@ -9,7 +9,7 @@ class Image
{
/**
* Check if a file is an image
*
*
* @param string $filename
* @return bool
*/
@ -17,10 +17,10 @@ class Image
{
return array_shift(explode('/', MIME::getContentType($filename))) === 'image';
}
/**
* Check if a file is an animated GIF.
*
*
* @param string $filename
* @return bool
*/
@ -46,10 +46,10 @@ class Image
fclose($fp);
return $frames > 1;
}
/**
* Get image information
*
*
* @param string $filename
* @return array|false
*/