Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Testwork / Hook / Scope / HookScope.php
diff --git a/vendor/behat/behat/src/Behat/Testwork/Hook/Scope/HookScope.php b/vendor/behat/behat/src/Behat/Testwork/Hook/Scope/HookScope.php
new file mode 100644 (file)
index 0000000..d7014fd
--- /dev/null
@@ -0,0 +1,48 @@
+<?php
+
+/*
+ * This file is part of the Behat.
+ * (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\Testwork\Hook\Scope;
+
+use Behat\Testwork\Environment\Environment;
+use Behat\Testwork\Hook\HookDispatcher;
+use Behat\Testwork\Hook\HookRepository;
+use Behat\Testwork\Suite\Suite;
+
+/**
+ * Represents an object used to find appropriate hooks.
+ *
+ * @see HookDispatcher
+ * @see HookRepository
+ *
+ * @author Konstantin Kudryashov <ever.zet@gmail.com>
+ */
+interface HookScope
+{
+    /**
+     * Returns hook scope name.
+     *
+     * @return string
+     */
+    public function getName();
+
+    /**
+     * Returns hook suite.
+     *
+     * @return Suite
+     */
+    public function getSuite();
+
+    /**
+     * Returns hook environment.
+     *
+     * @return Environment
+     */
+    public function getEnvironment();
+}