Neos\Flow\ObjectManagement\Configuration\ConfigurationArgument::set PHP Метод

set() публичный Метод

Sets the index, value, type of the argument and object configuration
public set ( integer $index, mixed $value, integer $type = self::ARGUMENT_TYPES_STRAIGHTVALUE ) : void
$index integer Index of the argument (counting starts at "1")
$value mixed Value of the argument
$type integer Type of the argument - one of the ARGUMENT_TYPE_* constants
Результат void
    public function set($index, $value, $type = self::ARGUMENT_TYPES_STRAIGHTVALUE)
    {
        $this->index = $index;
        $this->value = $value;
        $this->type = $type;
    }