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
No description
Details
at line 47
__construct(array $params = [])
No description
at line 57
array
getParameters()
No description
at line 68
Container
addService(string $name, object $service)
Adds the service to the container.
at line 111
void
removeService(string $name)
Removes the service from the container.
at line 123
object
getService(string $name)
Gets the service object by name.
at line 142
object
getByName(string $name)
Gets the service object by name.
at line 152
string
getServiceType(string $name)
Gets the service type by name.
at line 174
bool
hasService(string $name)
Does the service exist?
at line 184
bool
isCreated(string $name)
Is the service created?
at line 200
object
createService(string $name, array $args = [])
Creates new instance of the service.
at line 238
object|null
getByType(string $type, bool $throw = true)
Resolves service by type.
at line 279
array
findAutowired(string $type)
internal |
Gets the autowired service names of the specified type.
at line 290
array
findByType(string $type)
Gets the service names of the specified type.
at line 303
array
findByTag(string $tag)
Gets the service names of the specified tag.
at line 317
object
createInstance(string $class, array $args = [])
Creates new instance using autowiring.
at line 338
void
callInjects(object $service)
Calls all methods starting with with "inject" using autowiring.
at line 348
mixed
callMethod(callable $function, array $args = [])
Calls method using autowiring.
at line 364
static string
getMethodName(string $name)
No description
at line 374
void
initialize()
No description