Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / Output / Node / Printer / SuitePrinter.php
diff --git a/vendor/behat/behat/src/Behat/Behat/Output/Node/Printer/SuitePrinter.php b/vendor/behat/behat/src/Behat/Behat/Output/Node/Printer/SuitePrinter.php
deleted file mode 100644 (file)
index 58b8ef9..0000000
+++ /dev/null
@@ -1,38 +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\Output\Node\Printer;
-
-use Behat\Testwork\Output\Formatter;
-use Behat\Testwork\Suite\Suite;
-
-/**
- * Prints suite headers and footers.
- *
- * @author Wouter J <wouter@wouterj.nl>
- */
-interface SuitePrinter
-{
-    /**
-     * Prints suite header using provided formatter.
-     *
-     * @param Formatter $formatter
-     * @param Suite     $suite
-     */
-    public function printHeader(Formatter $formatter, Suite $suite);
-
-    /**
-     * Prints suite footer using provided printer.
-     *
-     * @param Formatter $formatter
-     * @param Suite     $suite
-     */
-    public function printFooter(Formatter $formatter, Suite $suite);
-}