phug-php/compiler

View on GitHub
CompilerEvent.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phug;

class CompilerEvent
{
    const COMPILE = 'compiler.compile';
    const OUTPUT = 'compiler.output';
    const NODE = 'compiler.node';
    const ELEMENT = 'compiler.element';
}