Latte\TokenIterator::currentValue PHP Method

currentValue() public method

Returns current token value.
public currentValue ( ) : string | null
return string | null
    public function currentValue()
    {
        return isset($this->tokens[$this->position]) ? $this->tokens[$this->position][Tokenizer::VALUE] : NULL;
    }