Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / Translator / Cli / GherkinTranslationsController.php
diff --git a/vendor/behat/behat/src/Behat/Behat/Translator/Cli/GherkinTranslationsController.php b/vendor/behat/behat/src/Behat/Behat/Translator/Cli/GherkinTranslationsController.php
deleted file mode 100644 (file)
index 439ad09..0000000
+++ /dev/null
@@ -1,59 +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\Translator\Cli;
-
-use Behat\Testwork\Cli\Controller;
-use Symfony\Component\Console\Command\Command as SymfonyCommand;
-use Symfony\Component\Console\Input\InputInterface;
-use Symfony\Component\Console\Output\OutputInterface;
-use Symfony\Component\Translation\Translator;
-
-/**
- * Configures translator service and loads default translations.
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- */
-final class GherkinTranslationsController implements Controller
-{
-    /**
-     * @var Translator
-     */
-    private $translator;
-
-    /**
-     * Initializes controller.
-     *
-     * @param Translator $translator
-     */
-    public function __construct(Translator $translator)
-    {
-        $this->translator = $translator;
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function configure(SymfonyCommand $command)
-    {
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function execute(InputInterface $input, OutputInterface $output)
-    {
-        $i18nPath = dirname(dirname(dirname(dirname(dirname(__DIR__))))) . DIRECTORY_SEPARATOR . 'i18n.php';
-
-        foreach (require($i18nPath) as $lang => $messages) {
-            $this->translator->addResource('array', $messages, $lang, 'output');
-        }
-    }
-}