Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Testwork / Output / ServiceContainer / Formatter / FormatterFactory.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\Testwork\Output\ServiceContainer\Formatter;
12
13 use Symfony\Component\DependencyInjection\ContainerBuilder;
14
15 /**
16  * Provides a way to easily define custom formatters.
17  *
18  * @author Konstantin Kudryashov <ever.zet@gmail.com>
19  */
20 interface FormatterFactory
21 {
22     /**
23      * Builds formatter configuration.
24      *
25      * @param ContainerBuilder $container
26      */
27     public function buildFormatter(ContainerBuilder $container);
28
29     /**
30      * Processes formatter configuration.
31      *
32      * @param ContainerBuilder $container
33      */
34     public function processFormatter(ContainerBuilder $container);
35 }