class InstanceofConfigurator extends AbstractServiceConfigurator

Traits

Constants

FACTORY

Properties

protected $definition from AbstractConfigurator
protected $parent from AbstractServiceConfigurator
protected $id from AbstractServiceConfigurator

Methods

__call($method, $args)

No description

static mixed
processValue(mixed $value, bool $allowServices = false)

Checks that a value is valid, optionally replacing Definition and Reference configurators by their configure value.

__construct(ServicesConfigurator $parent, Definition $definition, string $id = null, array $defaultTags = array())

No description

__destruct()

No description

set(string $id, string $class = null)

Registers a service.

alias(string $id, string $referencedId)

Creates an alias.

load(string $namespace, string $resource)

Registers a PSR-4 namespace using a glob pattern.

get(string $id)

Gets an already defined service definition.

__invoke(string $id, string $class = null)

Registers a service.

$this
autowire(bool $autowired = true)

Enables/disables autowiring.

$this
call(string $method, array $arguments = array())

Adds a method to call after service initialization.

from CallTrait
$this
configurator(string|array $configurator)

Sets a configurator to call after the service is fully initialized.

$this
lazy(bool|string $lazy = true)

Sets the lazy flag of this service.

from LazyTrait
$this
property(string $name, $value)

Sets a specific property.

$this
public()

No description

$this
private()

No description

$this
share(bool $shared = true)

Sets if the service must be shared or not.

$this
tag(string $name, array $attributes = array())

Adds a tag for this definition.

from TagTrait
$this
bind(string $nameOrFqcn, mixed $valueOrRef)

Sets bindings.

from BindTrait
instanceof(string $fqcn)

Defines an instanceof-conditional to be applied to following service definitions.

Details

__call($method, $args)

Parameters

$method
$args

static mixed processValue(mixed $value, bool $allowServices = false)

Checks that a value is valid, optionally replacing Definition and Reference configurators by their configure value.

Parameters

mixed $value
bool $allowServices whether Definition and Reference are allowed; by default, only scalars and arrays are

Return Value

mixed the value, optionally cast to a Definition/Reference

__construct(ServicesConfigurator $parent, Definition $definition, string $id = null, array $defaultTags = array())

Parameters

ServicesConfigurator $parent
Definition $definition
string $id
array $defaultTags

__destruct()

final ServiceConfigurator set(string $id, string $class = null)

Registers a service.

Parameters

string $id
string $class

Return Value

ServiceConfigurator

final AliasConfigurator alias(string $id, string $referencedId)

Creates an alias.

Parameters

string $id
string $referencedId

Return Value

AliasConfigurator

final PrototypeConfigurator load(string $namespace, string $resource)

Registers a PSR-4 namespace using a glob pattern.

Parameters

string $namespace
string $resource

Return Value

PrototypeConfigurator

final ServiceConfigurator get(string $id)

Gets an already defined service definition.

Parameters

string $id

Return Value

ServiceConfigurator

Exceptions

ServiceNotFoundException if the service definition does not exist

final ServiceConfigurator __invoke(string $id, string $class = null)

Registers a service.

Parameters

string $id
string $class

Return Value

ServiceConfigurator

final $this autowire(bool $autowired = true)

Enables/disables autowiring.

Parameters

bool $autowired

Return Value

$this

final $this call(string $method, array $arguments = array())

Adds a method to call after service initialization.

Parameters

string $method The method name to call
array $arguments An array of arguments to pass to the method call

Return Value

$this

Exceptions

InvalidArgumentException on empty $method param

final $this configurator(string|array $configurator)

Sets a configurator to call after the service is fully initialized.

Parameters

string|array $configurator A PHP callable reference

Return Value

$this

final $this lazy(bool|string $lazy = true)

Sets the lazy flag of this service.

Parameters

bool|string $lazy A FQCN to derivate the lazy proxy from or true to make it extend from the definition's class

Return Value

$this

final $this property(string $name, $value)

Sets a specific property.

Parameters

string $name
$value

Return Value

$this

final $this public()

Return Value

$this

final $this private()

Return Value

$this

final $this share(bool $shared = true)

Sets if the service must be shared or not.

Parameters

bool $shared Whether the service must be shared or not

Return Value

$this

final $this tag(string $name, array $attributes = array())

Adds a tag for this definition.

Parameters

string $name The tag name
array $attributes An array of attributes

Return Value

$this

final $this bind(string $nameOrFqcn, mixed $valueOrRef)

Sets bindings.

Bindings map $named or FQCN arguments to values that should be injected in the matching parameters (of the constructor, of methods called and of controller actions).

Parameters

string $nameOrFqcn A parameter name with its "$" prefix, or a FQCN
mixed $valueOrRef The value or reference to bind

Return Value

$this

final InstanceofConfigurator instanceof(string $fqcn)

Defines an instanceof-conditional to be applied to following service definitions.

Parameters

string $fqcn

Return Value

InstanceofConfigurator