phug-php/phug

View on GitHub
src/Phug/Parser/Parser/TokenHandler/AttributeEndTokenHandler.php

Summary

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

namespace Phug\Parser\TokenHandler;

use Phug\Lexer\Token\AttributeEndToken;

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

    public function handleAttributeEndToken()
    {
        // noop
    }
}