public function Definition::addArgument in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/Definition.php \Symfony\Component\DependencyInjection\Definition::addArgument()
Adds an argument to pass to the service constructor/factory method.
Parameters
mixed $argument An argument:
Return value
Definition The current instance
File
- vendor/
symfony/ dependency-injection/ Definition.php, line 286
Class
- Definition
- Definition represents a service definition.
Namespace
Symfony\Component\DependencyInjectionCode
public function addArgument($argument) {
$this->arguments[] = $argument;
return $this;
}