Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / Output / Node / Printer / SetupPrinter.php
1 <?php
2
3 /*
4  * This file is part of the Behat.
5  * (c) Konstantin Kudryashov <ever.zet@gmail.com>
6  *
7  * For the full copyright and license information, please view the LICENSE
8  * file that was distributed with this source code.
9  */
10
11 namespace Behat\Behat\Output\Node\Printer;
12
13 use Behat\Testwork\Output\Formatter;
14 use Behat\Testwork\Tester\Setup\Setup;
15 use Behat\Testwork\Tester\Setup\Teardown;
16
17 /**
18  * Behat setup printer interface.
19  *
20  * @author Konstantin Kudryashov <ever.zet@gmail.com>
21  */
22 interface SetupPrinter
23 {
24     /**
25      * Prints setup state.
26      *
27      * @param Formatter $formatter
28      * @param Setup     $setup
29      */
30     public function printSetup(Formatter $formatter, Setup $setup);
31
32     /**
33      * Prints teardown state.
34      *
35      * @param Formatter $formatter
36      * @param Teardown  $teardown
37      */
38     public function printTeardown(Formatter $formatter, Teardown $teardown);
39 }