phug-php/lexer

View on GitHub
Lexer/ScannerInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phug\Lexer;

interface ScannerInterface
{
    public function scan(State $state);
}