Flow\JSONPath\JSONPathToken::__construct PHP Method

__construct() public method

public __construct ( $type, $value )
    public function __construct($type, $value)
    {
        $this->validateType($type);
        $this->type = $type;
        $this->value = $value;
    }