Latte\MacroTokens::fetchWord PHP Méthode

fetchWord() public méthode

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