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

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

Constructor - sets the index, value and type of the argument
public __construct ( string $index, mixed $value, integer $type = self::ARGUMENT_TYPES_STRAIGHTVALUE )
$index string Index of the argument
$value mixed Value of the argument
$type integer Type of the argument - one of the argument_TYPE_* constants
    public function __construct($index, $value, $type = self::ARGUMENT_TYPES_STRAIGHTVALUE)
    {
        $this->set($index, $value, $type);
    }