Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / Context / Reader / TranslatableContextReader.php
diff --git a/vendor/behat/behat/src/Behat/Behat/Context/Reader/TranslatableContextReader.php b/vendor/behat/behat/src/Behat/Behat/Context/Reader/TranslatableContextReader.php
deleted file mode 100644 (file)
index 11327ee..0000000
+++ /dev/null
@@ -1,101 +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\Reader;
-
-use Behat\Behat\Context\Environment\ContextEnvironment;
-use Behat\Behat\Context\Exception\UnknownTranslationResourceException;
-use Behat\Behat\Context\TranslatableContext;
-use Symfony\Component\Translation\Translator;
-
-/**
- * Reads translation resources from translatable contexts.
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- */
-final class TranslatableContextReader implements ContextReader
-{
-    /**
-     * @var Translator
-     */
-    private $translator;
-
-    /**
-     * Initializes loader.
-     *
-     * @param Translator $translator
-     */
-    public function __construct(Translator $translator)
-    {
-        $this->translator = $translator;
-    }
-
-    /**
-     * {@inheritdoc}
-     *
-     * @see TranslatableContext
-     */
-    public function readContextCallees(ContextEnvironment $environment, $contextClass)
-    {
-        $reflClass = new \ReflectionClass($contextClass);
-
-        if (!$reflClass->implementsInterface('Behat\Behat\Context\TranslatableContext')) {
-            return array();
-        }
-
-        $assetsId = $environment->getSuite()->getName();
-        foreach (call_user_func(array($contextClass, 'getTranslationResources')) as $path) {
-            $this->addTranslationResource($path, $assetsId);
-        }
-
-        return array();
-    }
-
-    /**
-     * Adds translation resource.
-     *
-     * @param string $path
-     * @param string $assetsId
-     *
-     * @throws UnknownTranslationResourceException
-     */
-    private function addTranslationResource($path, $assetsId)
-    {
-        switch ($ext = pathinfo($path, PATHINFO_EXTENSION)) {
-            case 'yml':
-                $this->addTranslatorResource('yaml', $path, basename($path, '.' . $ext), $assetsId);
-                break;
-            case 'xliff':
-                $this->addTranslatorResource('xliff', $path, basename($path, '.' . $ext), $assetsId);
-                break;
-            case 'php':
-                $this->addTranslatorResource('php', $path, basename($path, '.' . $ext), $assetsId);
-                break;
-            default:
-                throw new UnknownTranslationResourceException(sprintf(
-                    'Can not read translations from `%s`. File type is not supported.',
-                    $path
-                ), $path);
-        }
-    }
-
-    /**
-     * Adds resource to translator instance.
-     *
-     * @param string $type
-     * @param string $path
-     * @param string $language
-     * @param string $assetsId
-     */
-    private function addTranslatorResource($type, $path, $language, $assetsId)
-    {
-        $this->translator->addResource($type, $path, $language, $assetsId);
-    }
-}