Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / Context / Argument / ArgumentResolverFactory.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\Context\Argument;
12
13 use Behat\Testwork\Environment\Environment;
14
15 /**
16  * Creates argument resolvers for provided environment.
17  *
18  * @see ContextEnvironmentHandler
19  *
20  * @author Konstantin Kudryashov <ever.zet@gmail.com>
21  */
22 interface ArgumentResolverFactory
23 {
24     /**
25      * Builds argument resolvers for provided suite.
26      *
27      * @param Environment $environment
28      *
29      * @return ArgumentResolver[]
30      */
31     public function createArgumentResolvers(Environment $environment);
32 }