PHP Interface PhpSpec\ServiceContainer

Afficher le fichier Open project: phpspec/phpspec Interface Usage Examples

Méthodes publiques

Méthode Description
define ( string $id, callable $definition, array $tags = [] ) Sets a factory for the service creation. The same service will be returned every time
get ( string $id ) : object Retrieves a service from the container
getByTag ( string $tag ) : array Finds all services tagged with a particular string
getParam ( string $id, mixed $default = null ) : mixed Gets a param from the container or a default value.
has ( $id ) : boolean Determines whether a service is defined
remove ( string $id ) Removes a service from the container
set ( string $id, object $service, array $tags = [] ) Sets a object to be used as a service
setParam ( string $id, mixed $value ) Sets a param in the container

Method Details

define() public méthode

Sets a factory for the service creation. The same service will be returned every time
public define ( string $id, callable $definition, array $tags = [] )
$id string
$definition callable
$tags array

get() public méthode

Retrieves a service from the container
public get ( string $id ) : object
$id string
Résultat object

getByTag() public méthode

Finds all services tagged with a particular string
public getByTag ( string $tag ) : array
$tag string
Résultat array

getParam() public méthode

Gets a param from the container or a default value.
public getParam ( string $id, mixed $default = null ) : mixed
$id string
$default mixed
Résultat mixed

has() public méthode

Determines whether a service is defined
public has ( $id ) : boolean
$id
Résultat boolean

remove() public méthode

Removes a service from the container
public remove ( string $id )
$id string

set() public méthode

Sets a object to be used as a service
public set ( string $id, object $service, array $tags = [] )
$id string
$service object
$tags array

setParam() public méthode

Sets a param in the container
public setParam ( string $id, mixed $value )
$id string
$value mixed