Initial
This commit is contained in:
17
app/Enum/MimeType.php
Normal file
17
app/Enum/MimeType.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Enum;
|
||||
|
||||
enum MimeType: string
|
||||
{
|
||||
|
||||
case png = 'image/png';
|
||||
case jpg = 'image/jpeg';
|
||||
case gif = 'image/gif';
|
||||
case bmp = 'image/bmp';
|
||||
case ico = 'image/vnd.microsoft.icon';
|
||||
case tiff = 'image/tiff';
|
||||
case svg = 'image/svg+xml';
|
||||
case webp = 'image/webp';
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user