Latte\MacroTokens::fetchWord PHP Method

fetchWord() public method

Reads single token (optionally delimited by comma) from string.
public fetchWord ( ) : string
return string
    public function fetchWord()
    {
        $words = $this->fetchWords();
        return $words ? implode(':', $words) : FALSE;
    }