Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
22 | 50 | protected function build() |
|
23 | { |
||
24 | 50 | $this->add((new RegexMatcher('[a-zA-Z_][a-zA-Z0-9_]*'))->setPlugins($this->getPlugins())); |
|
25 | 50 | $this->add((new StringMatcher)->setPlugins($this->getPlugins())); |
|
26 | 50 | $this->add((new IntegerMatcher)->setPlugins($this->getPlugins())); |
|
27 | 50 | } |
|
28 | |||
30 |