View file phpBB3/vendor/ocramius/proxy-manager/src/ProxyManager/Autoloader/AutoloaderInterface.php

File size: 456B
<?php

declare(strict_types=1);

namespace ProxyManager\Autoloader;

/**
 * Basic autoloader utilities required to work with proxy files
 *
 * @author Marco Pivetta <ocramius@gmail.com>
 * @license MIT
 */
interface AutoloaderInterface
{
    /**
     * Callback to allow the object to be handled as autoloader - tries to autoload the given class name
     *
     * @param string $className
     */
    public function __invoke(string $className) : bool;
}