Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types = 1); |
||
27 | 376 | public function __construct(string $lexeme, int $position, string $domain, string $word, ?Flags $flags = null) |
|
28 | 376 | { |
|
29 | $this->domain = $domain; |
||
30 | $this->word = $word; |
||
31 | 134 | $this->flags = $flags; |
|
32 | |||
33 | 134 | parent::__construct(Tokenizer::TOKEN_TERM, $lexeme, $position); |
|
34 | } |
||
55 |