Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / Context / Argument / SuiteScopedResolverFactory.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\Suite\Suite;
14
15 /**
16  * Creates argument resolvers for provided suite.
17  *
18  * @see ContextEnvironmentHandler
19  *
20  * @author Konstantin Kudryashov <ever.zet@gmail.com>
21  *
22  * @deprecated since 3.4. Use `ArgumentResolverFactory` instead
23  */
24 interface SuiteScopedResolverFactory
25 {
26     /**
27      * Creates argument resolvers for provided suite.
28      *
29      * @param Suite $suite
30      *
31      * @return ArgumentResolver[]
32      */
33     public function generateArgumentResolvers(Suite $suite);
34 }