mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 12:34:01 +00:00
16 lines
237 B
PHP
16 lines
237 B
PHP
<?php
|
|
|
|
namespace App\Classes\ValueObjects\Constants;
|
|
|
|
|
|
class File
|
|
{
|
|
|
|
public const EXTENSION = [
|
|
'image/gif' => 'gif',
|
|
'image/png' => 'png',
|
|
'image/jpeg' => 'jpeg',
|
|
'application/pdf' => 'pdf',
|
|
];
|
|
|
|
} |