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