Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drupal / drupal-extension / src / Drupal / DrupalExtension / Context / DrupalAwareInterface.php
diff --git a/vendor/drupal/drupal-extension/src/Drupal/DrupalExtension/Context/DrupalAwareInterface.php b/vendor/drupal/drupal-extension/src/Drupal/DrupalExtension/Context/DrupalAwareInterface.php
deleted file mode 100644 (file)
index 67c597d..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-
-namespace Drupal\DrupalExtension\Context;
-
-use Behat\Behat\Context\Context;
-use Behat\Testwork\Hook\HookDispatcher;
-
-use Drupal\DrupalDriverManager;
-use Symfony\Component\EventDispatcher\EventDispatcher;
-
-interface DrupalAwareInterface extends Context {
-
-  /**
-   * Sets Drupal instance.
-   */
-  public function setDrupal(DrupalDriverManager $drupal);
-
-  /**
-   * Set event dispatcher.
-   */
-  public function setDispatcher(HookDispatcher $dispatcher);
-
-  /**
-   * Gets Drupal instance.
-   */
-  public function getDrupal();
-
-  /**
-   * Sets parameters provided for Drupal.
-   *
-   * @param array $parameters
-   */
-  public function setDrupalParameters(array $parameters);
-}