Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / behat / src / Behat / Testwork / Output / NodeEventListeningFormatter.php
diff --git a/vendor/behat/behat/src/Behat/Testwork/Output/NodeEventListeningFormatter.php b/vendor/behat/behat/src/Behat/Testwork/Output/NodeEventListeningFormatter.php
deleted file mode 100644 (file)
index 3894d49..0000000
+++ /dev/null
@@ -1,126 +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\Testwork\Output;
-
-use Behat\Testwork\EventDispatcher\TestworkEventDispatcher;
-use Behat\Testwork\Output\Node\EventListener\EventListener;
-use Behat\Testwork\Output\Printer\OutputPrinter;
-use Symfony\Component\EventDispatcher\Event;
-
-/**
- * Formatter built around the idea of event delegation and composition.
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- */
-final class NodeEventListeningFormatter implements Formatter
-{
-    /**
-     * @var OutputPrinter
-     */
-    private $printer;
-    /**
-     * @var array
-     */
-    private $parameters;
-    /**
-     * @var EventListener
-     */
-    private $listener;
-    /**
-     * @var string
-     */
-    private $name;
-    /**
-     * @var string
-     */
-    private $description;
-
-    /**
-     * Initializes formatter.
-     *
-     * @param string        $name
-     * @param string        $description
-     * @param array         $parameters
-     * @param OutputPrinter $printer
-     * @param EventListener $listener
-     */
-    public function __construct($name, $description, array $parameters, OutputPrinter $printer, EventListener $listener)
-    {
-        $this->name = $name;
-        $this->description = $description;
-        $this->parameters = $parameters;
-        $this->printer = $printer;
-        $this->listener = $listener;
-    }
-
-    /**
-     * Returns an array of event names this subscriber wants to listen to.
-     *
-     * @return array The event names to listen to
-     */
-    public static function getSubscribedEvents()
-    {
-        return array(TestworkEventDispatcher::BEFORE_ALL_EVENTS => 'listenEvent');
-    }
-
-    /**
-     * Proxies event to the listener.
-     *
-     * @param Event       $event
-     * @param null|string $eventName
-     */
-    public function listenEvent(Event $event, $eventName = null)
-    {
-        $eventName = $eventName ?: $event->getName();
-
-        $this->listener->listenEvent($this, $event, $eventName);
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function getName()
-    {
-        return $this->name;
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function getDescription()
-    {
-        return $this->description;
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function getOutputPrinter()
-    {
-        return $this->printer;
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function setParameter($name, $value)
-    {
-        $this->parameters[$name] = $value;
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    public function getParameter($name)
-    {
-        return isset($this->parameters[$name]) ? $this->parameters[$name] : null;
-    }
-}