* @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; }