phug-php/parser

View on GitHub
Parser/TokenHandler/AttributeEndTokenHandler.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phug\Parser\TokenHandler;

use Phug\Lexer\Token\AttributeEndToken;

class AttributeEndTokenHandler extends AbstractTokenHandler
{
    const TOKEN_TYPE = AttributeEndToken::class;

    public function handleAttributeEndToken()
    {
        // noop
    }
}