Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / Definition / DefinitionRepository.php
diff --git a/vendor/behat/behat/src/Behat/Behat/Definition/DefinitionRepository.php b/vendor/behat/behat/src/Behat/Behat/Definition/DefinitionRepository.php
deleted file mode 100644 (file)
index b1db15a..0000000
+++ /dev/null
@@ -1,70 +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\Definition;
-
-use Behat\Behat\Definition\Exception\RedundantStepException;
-use Behat\Testwork\Environment\Environment;
-use Behat\Testwork\Environment\EnvironmentManager;
-
-/**
- * Provides step definitions using environment manager.
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- */
-final class DefinitionRepository
-{
-    /**
-     * @var EnvironmentManager
-     */
-    private $environmentManager;
-
-    /**
-     * Initializes repository.
-     *
-     * @param EnvironmentManager $environmentManager
-     */
-    public function __construct(EnvironmentManager $environmentManager)
-    {
-        $this->environmentManager = $environmentManager;
-    }
-
-    /**
-     * Returns all available definitions for a specific environment.
-     *
-     * @param Environment $environment
-     *
-     * @return Definition[]
-     *
-     * @throws RedundantStepException
-     */
-    public function getEnvironmentDefinitions(Environment $environment)
-    {
-        $patterns = array();
-        $definitions = array();
-
-        foreach ($this->environmentManager->readEnvironmentCallees($environment) as $callee) {
-            if (!$callee instanceof Definition) {
-                continue;
-            }
-
-            $pattern = $callee->getPattern();
-            if (isset($patterns[$pattern])) {
-                throw new RedundantStepException($callee, $patterns[$pattern]);
-            }
-
-            $patterns[$pattern] = $callee;
-
-            $definitions[] = $callee;
-        }
-
-        return $definitions;
-    }
-}