Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | public function __construct( |
||
18 | ValueListFetcherInterface $valueListFetcher, |
||
19 | EvaluatorInterface $evaluator, |
||
20 | LiteralFactoryInterface $literalFactory, |
||
21 | Matcher\MatcherFactoryInterface $matcherFactory |
||
22 | ) { |
||
23 | $this->valueListFetcher = $valueListFetcher; |
||
24 | $this->evaluator = $evaluator; |
||
25 | $this->literalFactory = $literalFactory; |
||
26 | $this->matcherFactory = $matcherFactory; |
||
27 | } |
||
49 |