projects
/
GitHub
/
WoltLab
/
WCF.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
6c26b887bf6c56ce641efca7b6586c6c213be66e
[GitHub/WoltLab/WCF.git]
/
1
<?php
2
3
declare(strict_types=1);
4
5
namespace CuyZ\Valinor\Type\Parser\Factory\Specifications;
6
7
use CuyZ\Valinor\Type\Parser\Lexer\TypeLexer;
8
9
/** @internal */
10
interface TypeParserSpecification
11
{
12
public function transform(TypeLexer $lexer): TypeLexer;
13
}