Latte\TokenIterator::currentValue PHP Метод

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

Returns current token value.
public currentValue ( ) : string | null
Результат string | null
    public function currentValue()
    {
        return isset($this->tokens[$this->position]) ? $this->tokens[$this->position][Tokenizer::VALUE] : NULL;
    }