Security update for permissions_by_term
[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
new file mode 100644 (file)
index 0000000..11aaa4f
--- /dev/null
@@ -0,0 +1,36 @@
+<?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);
+}