Total Complexity | 1 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | abstract class BaseContext implements Context |
||
17 | { |
||
18 | /** @var BuilderInterface */ |
||
19 | protected $builder; |
||
20 | |||
21 | /** |
||
22 | * @BeforeScenario |
||
23 | */ |
||
24 | public function getBuilder(BeforeScenarioScope $scope) |
||
25 | { |
||
26 | $this->builder = $scope->getEnvironment()->getContext(BuilderContext::class)->getBuilder(); |
||
27 | } |
||
29 |