Container
class Container
The dependency injection container default implementation.
Properties
$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 44
__construct(array $params = [])
No description
at line 54
array
getParameters()
No description
at line 64
Container
addService(string $name, object $service)
Adds the service to the container.
at line 104
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 133
object
getByName(string $name)
Gets the service object by name.
at line 143
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 229
object|null
getByType(string $type, bool $throw = true)
Resolves service by type.
at line 270
array
findAutowired(string $type)
internal |
Gets the autowired service names of the specified type.
at line 281
array
findByType(string $type)
Gets the service names of the specified type.
at line 294
array
findByTag(string $tag)
Gets the service names of the specified tag.
at line 306
object
createInstance(string $class, array $args = [])
Creates new instance using autowiring.
at line 326
void
callInjects(object $service)
Calls all methods starting with with "inject" using autowiring.
at line 335
mixed
callMethod(callable $function, array $args = [])
Calls method using autowiring.
at line 349
static string
getMethodName(string $name)
No description
Traits
Strict class for better experience.