Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / src / Drupal / DrupalExtension / Context / DrupalSubContextInterface.php
1 <?php
2
3 /**
4  * Contains \Drupal\DrupalExtension\Context\DrupalSubContextInterface.
5  */
6
7 namespace Drupal\DrupalExtension\Context;
8
9 use Behat\Behat\Context\Context;
10 use Drupal\DrupalDriverManager;
11
12 /**
13  * Interface for subcontexts.
14  *
15  * Implement this interface if you want to provide custom Behat step definitions
16  * for your contributed modules. The class should be placed in a file named
17  * 'MYMODULE.behat.inc'.
18  *
19  * See the documentation on "Contributed module subcontexts".
20  */
21 interface DrupalSubContextInterface extends Context {
22
23   /**
24    * Instantiates the subcontext.
25    *
26    * @param \Drupal\DrupalDriverManager $drupal
27    *   The Drupal Driver manager.
28    */
29   public function __construct(DrupalDriverManager $drupal);
30
31 }