Total Complexity | 5 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6 | final class Runtime implements RuntimeInterface |
||
7 | { |
||
8 | |||
9 | private $valueListFetcher; |
||
10 | |||
11 | private $evaluator; |
||
12 | |||
13 | private $literalFactory; |
||
14 | |||
15 | private $matcherFactory; |
||
16 | |||
17 | 4 | public function __construct( |
|
27 | 4 | } |
|
28 | |||
29 | 1 | public function getEvaluator(): EvaluatorInterface |
|
32 | } |
||
33 | |||
34 | 1 | public function getLiteralFactory(): LiteralFactoryInterface |
|
37 | } |
||
38 | |||
39 | 1 | public function getMatcherFactory(): Matcher\MatcherFactoryInterface |
|
40 | { |
||
41 | 1 | return $this->matcherFactory; |
|
42 | } |
||
43 | |||
44 | 1 | public function getValueListFetcher(): ValueListFetcherInterface |
|
47 | } |
||
48 | } |
||
49 |