Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / behat / src / Behat / Testwork / Cli / ServiceContainer / CliExtension.php
diff --git a/vendor/behat/behat/src/Behat/Testwork/Cli/ServiceContainer/CliExtension.php b/vendor/behat/behat/src/Behat/Testwork/Cli/ServiceContainer/CliExtension.php
deleted file mode 100644 (file)
index 4b9fba8..0000000
+++ /dev/null
@@ -1,115 +0,0 @@
-<?php
-
-/*
- * This file is part of the Behat Testwork.
- * (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\Cli\ServiceContainer;
-
-use Behat\Testwork\ServiceContainer\Extension;
-use Behat\Testwork\ServiceContainer\ExtensionManager;
-use Behat\Testwork\ServiceContainer\ServiceProcessor;
-use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
-use Symfony\Component\DependencyInjection\ContainerBuilder;
-use Symfony\Component\DependencyInjection\Definition;
-
-/**
- * Provides console services for testwork.
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- */
-final class CliExtension implements Extension
-{
-    /*
-     * Available services
-     */
-    const COMMAND_ID = 'cli.command';
-    const INPUT_ID = 'cli.input';
-    const OUTPUT_ID = 'cli.output';
-
-    /*
-     * Available extension points
-     */
-    const CONTROLLER_TAG = 'cli.controller';
-
-    /**
-     * @var ServiceProcessor
-     */
-    private $processor;
-
-    /**
-     * Initializes extension.
-     *
-     * @param null|ServiceProcessor $processor
-     */
-    public function __construct(ServiceProcessor $processor = null)
-    {
-        $this->processor = $processor ?: new ServiceProcessor();
-    }
-
-    /**
-     * Returns the extension config key.
-     *
-     * @return string
-     */
-    public function getConfigKey()
-    {
-        return 'cli';
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function initialize(ExtensionManager $extensionManager)
-    {
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function configure(ArrayNodeDefinition $builder)
-    {
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function load(ContainerBuilder $container, array $config)
-    {
-        $this->loadCommand($container);
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function process(ContainerBuilder $container)
-    {
-        $this->processControllers($container);
-    }
-
-    /**
-     * Loads application command.
-     *
-     * @param ContainerBuilder $container
-     */
-    protected function loadCommand(ContainerBuilder $container)
-    {
-        $definition = new Definition('Behat\Testwork\Cli\Command', array('%cli.command.name%', array()));
-        $container->setDefinition(self::COMMAND_ID, $definition);
-    }
-
-    /**
-     * Processes all controllers in container.
-     *
-     * @param ContainerBuilder $container
-     */
-    protected function processControllers(ContainerBuilder $container)
-    {
-        $references = $this->processor->findAndSortTaggedServices($container, self::CONTROLLER_TAG);
-        $container->getDefinition(self::COMMAND_ID)->replaceArgument(1, $references);
-    }
-}