Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / behat / src / Behat / Testwork / Hook / Scope / BeforeSuiteScope.php
diff --git a/vendor/behat/behat/src/Behat/Testwork/Hook/Scope/BeforeSuiteScope.php b/vendor/behat/behat/src/Behat/Testwork/Hook/Scope/BeforeSuiteScope.php
deleted file mode 100644 (file)
index 5c982cb..0000000
+++ /dev/null
@@ -1,75 +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\Specification\SpecificationIterator;
-use Behat\Testwork\Environment\Environment;
-
-/**
- * Represents a scope for BeforeSuite hook.
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- */
-final class BeforeSuiteScope implements SuiteScope
-{
-    /**
-     * @var Environment
-     */
-    private $environment;
-    /**
-     * @var SpecificationIterator
-     */
-    private $iterator;
-
-    /**
-     * Initializes scope.
-     *
-     * @param Environment           $env
-     * @param SpecificationIterator $iterator
-     */
-    public function __construct(Environment $env, SpecificationIterator $iterator)
-    {
-        $this->environment = $env;
-        $this->iterator = $iterator;
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function getName()
-    {
-        return self::BEFORE;
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function getSuite()
-    {
-        return $this->environment->getSuite();
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function getEnvironment()
-    {
-        return $this->environment;
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function getSpecificationIterator()
-    {
-        return $this->iterator;
-    }
-}