1 | <?php |
||
15 | class FooFoo extends DrupalSubContextBase implements DrupalSubContextInterface { |
||
16 | |||
17 | /** |
||
18 | * @var \Drupal\DrupalExtension\Context\DrupalContext |
||
19 | */ |
||
20 | protected $drupalContext; |
||
21 | |||
22 | /** |
||
23 | * @var \Drupal\DrupalExtension\Context\MinkContext |
||
24 | */ |
||
25 | protected $minkContext; |
||
26 | |||
27 | /** |
||
28 | * @BeforeScenario |
||
29 | */ |
||
30 | public function gatherContexts(BeforeScenarioScope $scope) { |
||
36 | |||
37 | /** |
||
38 | * @Given I create a(an) :arg1 content type |
||
39 | */ |
||
40 | public function CreateAContentType($arg1) { |
||
47 | |||
48 | /** |
||
49 | * @Then /^I should have a subcontext definition$/ |
||
50 | */ |
||
51 | public function assertSubContextDefinition() { |
||
54 | |||
55 | } |
||
56 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.