phug-php/parser

View on GitHub
Parser/TokenHandlerInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phug\Parser;

use Phug\Lexer\TokenInterface;

interface TokenHandlerInterface
{
    public function handleToken(TokenInterface $token, State $state);
}