View file phpBB3/vendor/ocramius/proxy-manager/src/ProxyManager/FileLocator/FileLocatorInterface.php

File size: 375B
<?php

declare(strict_types=1);

namespace ProxyManager\FileLocator;

/**
 * Basic autoloader utilities required to work with proxy files
 *
 * @author Marco Pivetta <ocramius@gmail.com>
 * @license MIT
 */
interface FileLocatorInterface
{
    /**
     * Retrieves the file name for the given proxy
     */
    public function getProxyFileName(string $className) : string;
}