Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / mink-extension / src / Behat / MinkExtension / Context / MinkAwareContext.php
diff --git a/vendor/behat/mink-extension/src/Behat/MinkExtension/Context/MinkAwareContext.php b/vendor/behat/mink-extension/src/Behat/MinkExtension/Context/MinkAwareContext.php
deleted file mode 100644 (file)
index 11aaa4f..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-
-/*
- * This file is part of the Behat MinkExtension.
- * (c) Konstantin Kudryashov <ever.zet@gmail.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Behat\MinkExtension\Context;
-
-use Behat\Behat\Context\Context;
-use Behat\Mink\Mink;
-
-/**
- * Mink aware interface for contexts.
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- */
-interface MinkAwareContext extends Context
-{
-    /**
-     * Sets Mink instance.
-     *
-     * @param Mink $mink Mink session manager
-     */
-    public function setMink(Mink $mink);
-
-    /**
-     * Sets parameters provided for Mink.
-     *
-     * @param array $parameters
-     */
-    public function setMinkParameters(array $parameters);
-}