Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / Context / Environment / InitializedContextEnvironment.php
diff --git a/vendor/behat/behat/src/Behat/Behat/Context/Environment/InitializedContextEnvironment.php b/vendor/behat/behat/src/Behat/Behat/Context/Environment/InitializedContextEnvironment.php
deleted file mode 100644 (file)
index 0533549..0000000
+++ /dev/null
@@ -1,155 +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\Behat\Context\Environment;
-
-use Behat\Behat\Context\Context;
-use Behat\Behat\Context\Environment\Handler\ContextEnvironmentHandler;
-use Behat\Behat\Context\Exception\ContextNotFoundException;
-use Behat\Behat\HelperContainer\Environment\ServiceContainerEnvironment;
-use Behat\Testwork\Call\Callee;
-use Behat\Testwork\Suite\Suite;
-use Psr\Container\ContainerInterface;
-
-/**
- * Context environment based on a list of instantiated context objects.
- *
- * @see ContextEnvironmentHandler
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- */
-final class InitializedContextEnvironment implements ContextEnvironment, ServiceContainerEnvironment
-{
-    /**
-     * @var string
-     */
-    private $suite;
-    /**
-     * @var ContainerInterface
-     */
-    private $serviceContainer;
-    /**
-     * @var Context[]
-     */
-    private $contexts = array();
-
-    /**
-     * Initializes environment.
-     *
-     * @param Suite $suite
-     */
-    public function __construct(Suite $suite)
-    {
-        $this->suite = $suite;
-    }
-
-    /**
-     * Registers context instance in the environment.
-     *
-     * @param Context $context
-     */
-    public function registerContext(Context $context)
-    {
-        $this->contexts[get_class($context)] = $context;
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function setServiceContainer(ContainerInterface $container = null)
-    {
-        $this->serviceContainer = $container;
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function getSuite()
-    {
-        return $this->suite;
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function hasContexts()
-    {
-        return count($this->contexts) > 0;
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function getContextClasses()
-    {
-        return array_keys($this->contexts);
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function hasContextClass($class)
-    {
-        return isset($this->contexts[$class]);
-    }
-
-    /**
-     * Returns list of registered context instances.
-     *
-     * @return Context[]
-     */
-    public function getContexts()
-    {
-        return array_values($this->contexts);
-    }
-
-    /**
-     * Returns registered context by its class name.
-     *
-     * @param string $class
-     *
-     * @return Context
-     *
-     * @throws ContextNotFoundException If context is not in the environment
-     */
-    public function getContext($class)
-    {
-        if (!$this->hasContextClass($class)) {
-            throw new ContextNotFoundException(sprintf(
-                '`%s` context is not found in the suite environment. Have you registered it?',
-                $class
-            ), $class);
-        }
-
-        return $this->contexts[$class];
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function getServiceContainer()
-    {
-        return $this->serviceContainer;
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function bindCallee(Callee $callee)
-    {
-        $callable = $callee->getCallable();
-
-        if ($callee->isAnInstanceMethod()) {
-            return array($this->getContext($callable[0]), $callable[1]);
-        }
-
-        return $callable;
-    }
-}