<?php/** * @see https://github.com/zendframework/zend-loader for the canonical source repository * @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com) * @license https://github.com/zendframework/zend-loader/blob/master/LICENSE.md New BSD License */namespaceZend\Loader;/** * Short name locator interface */interfaceShortNameLocator{/** * Whether or not a Helper by a specific name * * @param string $name * @return bool */publicfunctionisLoaded($name);/** * Return full class name for a named helper * * @param string $name * @return string */publicfunctiongetClassName($name);/** * Load a helper via the name provided * * @param string $name * @return string */publicfunctionload($name);}