X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FTestwork%2FOutput%2FFormatter.php;fp=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FTestwork%2FOutput%2FFormatter.php;h=0000000000000000000000000000000000000000;hp=23a87c6d1ef6902f62097f19f54476d0aac7f900;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/behat/behat/src/Behat/Testwork/Output/Formatter.php b/vendor/behat/behat/src/Behat/Testwork/Output/Formatter.php deleted file mode 100644 index 23a87c6d1..000000000 --- a/vendor/behat/behat/src/Behat/Testwork/Output/Formatter.php +++ /dev/null @@ -1,62 +0,0 @@ - - * - * 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\Output\Printer\OutputPrinter; -use Symfony\Component\EventDispatcher\EventSubscriberInterface; - -/** - * Represents Testwork output formatter. - * - * @see OutputManager - * - * @author Konstantin Kudryashov - */ -interface Formatter extends EventSubscriberInterface -{ - /** - * Returns formatter name. - * - * @return string - */ - public function getName(); - - /** - * Returns formatter description. - * - * @return string - */ - public function getDescription(); - - /** - * Returns formatter output printer. - * - * @return OutputPrinter - */ - public function getOutputPrinter(); - - /** - * Sets formatter parameter. - * - * @param string $name - * @param mixed $value - */ - public function setParameter($name, $value); - - /** - * Returns parameter name. - * - * @param string $name - * - * @return mixed - */ - public function getParameter($name); -}