Conditions | 3 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
50 | public function buildEngine(): Engine |
||
51 | { |
||
52 | return new Engine( |
||
53 | new Parser, |
||
54 | new ExampleFactory( |
||
55 | new ExpectationFactory, |
||
56 | $this->filter ?: new NullFilter, |
||
57 | $this->ignoreUnknownAnnotations |
||
58 | ), |
||
59 | new ExampleTester( |
||
60 | $this->runner ?: new EvalRunner, |
||
61 | new ExpectationEvaluator |
||
62 | ) |
||
66 |