PHP Класс Swap\Service\Registry

Автор: Florian Voutzinos ([email protected])
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
__construct ( ) Constructor.
get ( string $name ) : string | null Gets a service.
has ( string $name ) : boolean Tells of the registry has the given service.
register ( string $name, string | callable $classOrCallable ) Registers a new service.

Приватные методы

Метод Описание
registerServices ( ) Registers the core services.

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

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

Constructor.
public __construct ( )

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

Gets a service.
public get ( string $name ) : string | null
$name string The service name
Результат string | null

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

Tells of the registry has the given service.
public has ( string $name ) : boolean
$name string The service name
Результат boolean

register() публичный статический Метод

Registers a new service.
public static register ( string $name, string | callable $classOrCallable )
$name string The service name
$classOrCallable string | callable The class name or a callable