* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Behat\Behat\Context\Argument; use Behat\Testwork\Suite\Suite; /** * Creates argument resolvers for provided suite. * * @see ContextEnvironmentHandler * * @author Konstantin Kudryashov * * @deprecated since 3.4. Use `ArgumentResolverFactory` instead */ interface SuiteScopedResolverFactory { /** * Creates argument resolvers for provided suite. * * @param Suite $suite * * @return ArgumentResolver[] */ public function generateArgumentResolvers(Suite $suite); }