PHP 클래스 Webiny\Component\ClassLoader\Loaders\Pear

상속: extends AbstractLoader
파일 보기 프로젝트 열기: Webiny/Framework 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$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