File "ExtensionLookup.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/league/mime-type-detection/src/ExtensionLookup.php
File size: 270 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare(strict_types=1);

namespace League\MimeTypeDetection;

interface ExtensionLookup
{
    public function lookupExtension(string $mimetype): ?string;

    /**
     * @return string[]
     */
    public function lookupAllExtensions(string $mimetype): array;
}