2020-08-19 21:06:45 +02:00

11 lines
185 B
PHP

<?php
declare(strict_types=1);
final class MimeType
{
public const PLAINTEXT = 'text/plain';
public const JSON = 'application/json';
public const SVG = 'image/svg+xml';
}