class DefinitionDecorator extends Definition
This definition decorates another definition.
Methods
__construct(string $parent) | ||
Definition | setFactory($callable) Sets a factory. | |
string|array | getFactory() Gets the factory. | from Definition |
Definition | setDecoratedService(null|string $id, null|string $renamedId = null, int $priority) Sets the service that this service is decorating. | |
null|array | getDecoratedService() Gets the service that decorates this service. | from Definition |
Definition | setClass(string $class) Sets the service class. | |
string|null | getClass() Gets the service class. | from Definition |
Definition | setArguments(array $arguments) Sets the arguments to pass to the service constructor/factory method. | from Definition |
setProperties(array $properties) | from Definition | |
getProperties() | from Definition | |
setProperty($name, $value) | from Definition | |
Definition | addArgument(mixed $argument) Adds an argument to pass to the service constructor/factory method. | from Definition |
Definition | replaceArgument(int $index, mixed $value) You should always use this method when overwriting existing arguments of the parent definition. | |
array | getArguments() Gets the arguments to pass to the service constructor/factory method. | from Definition |
mixed | getArgument(int $index) Gets an argument to pass to the service constructor/factory method. | |
Definition | setMethodCalls(array $calls = array()) Sets the methods to call after service initialization. | from Definition |
Definition | addMethodCall(string $method, array $arguments = array()) Adds a method to call after service initialization. | from Definition |
Definition | removeMethodCall(string $method) Removes a method to call after service initialization. | from Definition |
bool | hasMethodCall(string $method) Check if the current definition has a given method to call after service initialization. | from Definition |
array | getMethodCalls() Gets the methods to call after service initialization. | from Definition |
Definition | setTags(array $tags) Sets tags for this definition. | from Definition |
array | getTags() Returns all tags. | from Definition |
array | getTag(string $name) Gets a tag by name. | from Definition |
Definition | addTag(string $name, array $attributes = array()) Adds a tag for this definition. | from Definition |
bool | hasTag(string $name) Whether this definition has a tag with the given name. | from Definition |
Definition | clearTag(string $name) Clears all tags for a given name. | from Definition |
Definition | clearTags() Clears the tags for this definition. | from Definition |
Definition | setFile(string $file) Sets a file to require before creating the service. | |
string|null | getFile() Gets the file to require before creating the service. | from Definition |
Definition | setShared(bool $shared) Sets if the service must be shared or not. | from Definition |
bool | isShared() Whether this service is shared. | from Definition |
Definition | setPublic(bool $boolean) Sets the visibility of this service. | |
bool | isPublic() Whether this service is public facing. | from Definition |
Definition | setLazy($boolean) Sets the lazy flag of this service. | |
bool | isLazy() Whether this service is lazy. | from Definition |
Definition | setSynthetic(bool $boolean) Sets whether this definition is synthetic, that is not constructed by the container, but dynamically injected. | from Definition |
bool | isSynthetic() Whether this definition is synthetic, that is not constructed by the container, but dynamically injected. | from Definition |
Definition | setAbstract(bool $boolean) Whether this definition is abstract, that means it merely serves as a template for other definitions. | from Definition |
bool | isAbstract() Whether this definition is abstract, that means it merely serves as a template for other definitions. | from Definition |
Definition | setDeprecated($boolean = true, string $template = null) Whether this definition is deprecated, that means it should not be called anymore. | |
bool | isDeprecated() Whether this definition is deprecated, that means it should not be called anymore. | from Definition |
string | getDeprecationMessage(string $id) Message to use if this definition is deprecated. | from Definition |
Definition | setConfigurator(callable $callable) Sets a configurator to call after the service is fully initialized. | |
callable|null | getConfigurator() Gets the configurator to call after the service is fully initialized. | from Definition |
Definition | setAutowiringTypes(array $types) Sets types that will default to this definition. | from Definition |
bool | isAutowired() Is the definition autowired? | from Definition |
Definition | setAutowired($autowired) Sets autowired. | |
string[] | getAutowiringTypes() Gets autowiring types that will default to this definition. | from Definition |
Definition | addAutowiringType(string $type) Adds a type that will default to this definition. | from Definition |
Definition | removeAutowiringType(string $type) Removes a type. | from Definition |
bool | hasAutowiringType(string $type) Will this definition default for the given type? | from Definition |
string | getParent() Returns the Definition being decorated. | |
array | getChanges() Returns all changes tracked for the Definition object. |
Details
__construct(string $parent)
Definition setFactory($callable)
Sets a factory.
string|array getFactory()
Gets the factory.
Definition setDecoratedService(null|string $id, null|string $renamedId = null, int $priority)
Sets the service that this service is decorating.
null|array getDecoratedService()
Gets the service that decorates this service.
Definition setClass(string $class)
Sets the service class.
string|null getClass()
Gets the service class.
Definition setArguments(array $arguments)
Sets the arguments to pass to the service constructor/factory method.
setProperties(array $properties)
getProperties()
setProperty($name, $value)
Definition addArgument(mixed $argument)
Adds an argument to pass to the service constructor/factory method.
Definition replaceArgument(int $index, mixed $value)
You should always use this method when overwriting existing arguments of the parent definition.
If you directly call setArguments() keep in mind that you must follow certain conventions when you want to overwrite the arguments of the parent definition, otherwise your arguments will only be appended.
array getArguments()
Gets the arguments to pass to the service constructor/factory method.
mixed getArgument(int $index)
Gets an argument to pass to the service constructor/factory method.
If replaceArgument() has been used to replace an argument, this method will return the replacement value.
Definition setMethodCalls(array $calls = array())
Sets the methods to call after service initialization.
Definition addMethodCall(string $method, array $arguments = array())
Adds a method to call after service initialization.
Definition removeMethodCall(string $method)
Removes a method to call after service initialization.
bool hasMethodCall(string $method)
Check if the current definition has a given method to call after service initialization.
array getMethodCalls()
Gets the methods to call after service initialization.
Definition setTags(array $tags)
Sets tags for this definition.
array getTags()
Returns all tags.
array getTag(string $name)
Gets a tag by name.
Definition addTag(string $name, array $attributes = array())
Adds a tag for this definition.
bool hasTag(string $name)
Whether this definition has a tag with the given name.
Definition clearTag(string $name)
Clears all tags for a given name.
Definition clearTags()
Clears the tags for this definition.
Definition setFile(string $file)
Sets a file to require before creating the service.
string|null getFile()
Gets the file to require before creating the service.
Definition setShared(bool $shared)
Sets if the service must be shared or not.
bool isShared()
Whether this service is shared.
Definition setPublic(bool $boolean)
Sets the visibility of this service.
bool isPublic()
Whether this service is public facing.
Definition setLazy($boolean)
Sets the lazy flag of this service.
bool isLazy()
Whether this service is lazy.
Definition setSynthetic(bool $boolean)
Sets whether this definition is synthetic, that is not constructed by the container, but dynamically injected.
bool isSynthetic()
Whether this definition is synthetic, that is not constructed by the container, but dynamically injected.
Definition setAbstract(bool $boolean)
Whether this definition is abstract, that means it merely serves as a template for other definitions.
bool isAbstract()
Whether this definition is abstract, that means it merely serves as a template for other definitions.
Definition setDeprecated($boolean = true, string $template = null)
Whether this definition is deprecated, that means it should not be called anymore.
bool isDeprecated()
Whether this definition is deprecated, that means it should not be called anymore.
string getDeprecationMessage(string $id)
Message to use if this definition is deprecated.
Definition setConfigurator(callable $callable)
Sets a configurator to call after the service is fully initialized.
callable|null getConfigurator()
Gets the configurator to call after the service is fully initialized.
Definition setAutowiringTypes(array $types)
Sets types that will default to this definition.
bool isAutowired()
Is the definition autowired?
Definition setAutowired($autowired)
Sets autowired.
string[] getAutowiringTypes()
Gets autowiring types that will default to this definition.
Definition addAutowiringType(string $type)
Adds a type that will default to this definition.
Definition removeAutowiringType(string $type)
Removes a type.
bool hasAutowiringType(string $type)
Will this definition default for the given type?
string getParent()
Returns the Definition being decorated.
array getChanges()
Returns all changes tracked for the Definition object.
Please login to continue.