phug-php/lexer

View on GitHub
Lexer/HandleTokenInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phug\Lexer;

interface HandleTokenInterface
{
    public function isHandled();

    public function markAsHandled();
}