FOF30\View\Compiler\Blade::parseToken PHP Метод

parseToken() защищенный Метод

Parse the tokens from the template.
protected parseToken ( array $token ) : string
$token array
Результат string
    protected function parseToken($token)
    {
        list($id, $content) = $token;
        if ($id == T_INLINE_HTML) {
            foreach ($this->compilers as $type) {
                $content = $this->{"compile{$type}"}($content);
            }
        }
        return $content;
    }