phug-php/lexer

View on GitHub
Lexer/TokenInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phug\Lexer;

use Phug\Util\SourceLocationInterface;

interface TokenInterface
{
    public function __construct(SourceLocationInterface $sourceLocation = null, $level = null, $indentation = null);

    /**
     * @return SourceLocationInterface|null
     */
    public function getSourceLocation();

    public function getLevel();

    public function getIndentation();
}