Update Composer packages

This commit is contained in:
Paul Nicoué 2022-12-19 14:56:05 +01:00
parent 0320235f6c
commit a8b68fb61b
378 changed files with 28466 additions and 28852 deletions

View file

@ -170,7 +170,7 @@ class Mime
* @param string $extension
* @return string|null
*/
public static function fromExtension(string $extension): ?string
public static function fromExtension(string $extension): string|null
{
$mime = static::$types[$extension] ?? null;
return is_array($mime) === true ? array_shift($mime) : $mime;
@ -312,12 +312,8 @@ class Mime
/**
* Returns the MIME type of a file
*
* @param string $file
* @param string $extension
* @return string|false
*/
public static function type(string $file, string $extension = null)
public static function type(string $file, string|null $extension = null): string|null
{
// use the standard finfo extension
$mime = static::fromFileInfo($file);