phug-php/phug

View on GitHub
src/Phug/Lexer/Lexer/Token/CommentToken.php

Summary

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

namespace Phug\Lexer\Token;

use Phug\Lexer\AbstractToken;
use Phug\Util\Partial\VisibleTrait;

class CommentToken extends AbstractToken
{
    use VisibleTrait;
}