function BoundArgument::setValues
Overrides ArgumentInterface::setValues
File
-
vendor/
symfony/ dependency-injection/ Argument/ BoundArgument.php, line 46
Class
- BoundArgument
- @author Guilhem Niot <guilhem.niot@gmail.com>
Namespace
Symfony\Component\DependencyInjection\ArgumentCode
public function setValues(array $values) : void {
if (5 === \count($values)) {
[
$this->value,
$this->identifier,
$this->used,
$this->type,
$this->file,
] = $values;
}
else {
[
$this->value,
$this->identifier,
$this->used,
] = $values;
}
}