PHP Класс Webiny\Component\ClassLoader\Loaders\Psr4

Наследование: extends AbstractLoader
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$instance Holds the loader instance.

Открытые методы

Метод Описание
findClass ( string $class ) : string | boolean Parses that class name and returns the absolute path to the class.
registerMap ( string $prefix, array | string $library ) : void Register a map.

Описание методов

findClass() публичный Метод

NOTE: no file existence checks should be performed, nor should the method require or include the class, is should just return the path to the file.
public findClass ( string $class ) : string | boolean
$class string Class name that should be loaded.
Результат string | boolean Path to the class or false.

registerMap() публичный Метод

Register a map.
public registerMap ( string $prefix, array | string $library ) : void
$prefix string Map prefix or namespace.
$library array | string Absolute path to the library or an array with path and additional options.
Результат void

Описание свойств

$instance защищенное статическое свойство

Holds the loader instance.
protected static $instance