1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Contract\Core; |
4: | |
5: | |
6: | |
7: | |
8: | interface MimeType |
9: | { |
10: | public const BINARY = 'application/octet-stream'; |
11: | public const FORM = 'application/x-www-form-urlencoded'; |
12: | public const FORM_MULTIPART = 'multipart/form-data'; |
13: | public const GZIP = 'application/gzip'; |
14: | public const HTML = 'text/html'; |
15: | public const JSON = 'application/json'; |
16: | public const JWT = 'application/jwt'; |
17: | public const TEXT = 'text/plain'; |
18: | public const XML = 'application/xml'; |
19: | public const YAML = 'application/yaml'; |
20: | public const ZIP = 'application/zip'; |
21: | } |
22: | |