Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / behat / src / Behat / Testwork / EventDispatcher / Event / LifecycleEvent.php
diff --git a/vendor/behat/behat/src/Behat/Testwork/EventDispatcher/Event/LifecycleEvent.php b/vendor/behat/behat/src/Behat/Testwork/EventDispatcher/Event/LifecycleEvent.php
deleted file mode 100644 (file)
index 50191b4..0000000
+++ /dev/null
@@ -1,58 +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\EventDispatcher\Event;
-
-use Behat\Testwork\Environment\Environment;
-use Behat\Testwork\Suite\Suite;
-use Symfony\Component\EventDispatcher\Event;
-
-/**
- * Represents an event which holds references to current suite and environment.
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- */
-abstract class LifecycleEvent extends Event
-{
-    /**
-     * @var Environment
-     */
-    private $environment;
-
-    /**
-     * Initializes scenario event.
-     *
-     * @param Environment $env
-     */
-    public function __construct(Environment $env)
-    {
-        $this->environment = $env;
-    }
-
-    /**
-     * Returns suite in which this event was fired.
-     *
-     * @return Suite
-     */
-    public function getSuite()
-    {
-        return $this->environment->getSuite();
-    }
-
-    /**
-     * Returns environment in which this event was fired.
-     *
-     * @return Environment
-     */
-    public function getEnvironment()
-    {
-        return $this->environment;
-    }
-}