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);
    }