phug-php/phug

View on GitHub
src/Phug/Parser/Parser/TokenHandlerInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Phug\Parser;

use Phug\Lexer\TokenInterface;

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