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