Updated to Drupal 8.5. Core Media not yet in use.
[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
deleted file mode 100644 (file)
index d7014fd..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-<?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();
-}