Total Complexity | 5 |
Total Lines | 52 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
9 | class IndexationContext extends BaseContext |
||
10 | { |
||
11 | /** |
||
12 | * @var RobotsContext |
||
13 | */ |
||
14 | private $robotsContext; |
||
15 | |||
16 | /** |
||
17 | * @var MetaContext |
||
18 | */ |
||
19 | private $metaContext; |
||
20 | |||
21 | /** |
||
22 | * @BeforeScenario |
||
23 | */ |
||
24 | public function gatherContexts(BeforeScenarioScope $scope): void |
||
31 | } |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @Then the page should not be indexable |
||
36 | */ |
||
37 | public function thePageShouldNotBeIndexable(): void |
||
42 | ); |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * @Then the page should be indexable |
||
47 | */ |
||
48 | public function thePageShouldBeIndexable(): void |
||
66 |