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