phug-php/lexer

View on GitHub
LexerEvent.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phug;

class LexerEvent
{
    const LEX = 'lexer.lex';
    const END_LEX = 'lexer.end_lex';
    const TOKEN = 'lexer.token';
}