Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types = 1); |
||
32 | public function __construct( |
||
33 | 22 | string $lexeme, |
|
34 | 22 | int $position, |
|
35 | string $domain, |
||
36 | string $quote, |
||
37 | 2 | string $phrase, |
|
38 | ?Flags $flags = null |
||
39 | 2 | ) |
|
40 | { |
||
41 | $this->domain = $domain; |
||
42 | $this->quote = $quote; |
||
43 | 2 | $this->phrase = $phrase; |
|
44 | $this->flags = $flags; |
||
45 | 2 | ||
46 | parent::__construct(Tokenizer::TOKEN_TERM, $lexeme, $position); |
||
47 | } |
||
74 |