Container
class Container
The dependency injection container default implementation.
Properties
array | $parameters | ||
protected string[] | $types | ||
protected string[] | $aliases | ||
protected array[] | $tags | ||
protected array[] | $wiring |
Methods
No description
No description
Adds the service to the container.
Removes the service from the container.
Gets the service object by name.
Gets the service object by name.
Gets the service type by name.
Does the service exist?
Is the service created?
Creates new instance of the service.
Resolves service by type.
Gets the autowired service names of the specified type.
Gets the service names of the specified type.
Gets the service names of the specified tag.
Creates new instance using autowiring.
Calls all methods starting with with "inject" using autowiring.
Calls method using autowiring.
No description
Details
at line 47
__construct(array $params = [])
at line 57
array
getParameters()
at line 68
Container
addService(string $name, $service)
Adds the service to the container.
at line 103
void
removeService(string $name)
Removes the service from the container.
at line 115
object
getService(string $name)
Gets the service object by name.
at line 132
object
getByName(string $name)
Gets the service object by name.
at line 142
string
getServiceType(string $name)
Gets the service type by name.
at line 164
bool
hasService(string $name)
Does the service exist?
at line 174
bool
isCreated(string $name)
Is the service created?
at line 189
object
createService(string $name, array $args = [])
Creates new instance of the service.
at line 225
object|null
getByType(string $type, bool $throw = true)
Resolves service by type.
at line 256
array
findAutowired(string $type)
Gets the autowired service names of the specified type.
at line 267
array
findByType(string $type)
Gets the service names of the specified type.
at line 280
array
findByTag(string $tag)
Gets the service names of the specified tag.
at line 294
object
createInstance(string $class, array $args = [])
Creates new instance using autowiring.
at line 314
void
callInjects(object $service)
Calls all methods starting with with "inject" using autowiring.
at line 324
mixed
callMethod(callable $function, array $args = [])
Calls method using autowiring.