phug-php/phug

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

Summary

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

namespace Phug\Parser\TokenHandler;

use Phug\Lexer\Token\IndentToken;
use Phug\Parser\State;

class IndentTokenHandler extends AbstractTokenHandler
{
    const TOKEN_TYPE = IndentToken::class;

    public function handleIndentToken(IndentToken $token, State $state)
    {
        $state->enter();
    }
}