* @license MIT */ interface AutoloaderInterface { /** * Callback to allow the object to be handled as autoloader - tries to autoload the given class name * * @param string $className * * @return bool */ public function __invoke($className); }