user_saml/tests/integration/vendor/behat/behat/src/Behat/Behat/Snippet/Generator/SnippetGenerator.php
Arthur Schiwon 3435d5093a
update behat and deps
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
2022-04-07 17:00:47 +02:00

47 lines
1.1 KiB
PHP

<?php
/*
* This file is part of the Behat.
* (c) Konstantin Kudryashov <ever.zet@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Behat\Behat\Snippet\Generator;
use Behat\Behat\Snippet\Snippet;
use Behat\Behat\Snippet\SnippetRegistry;
use Behat\Gherkin\Node\StepNode;
use Behat\Testwork\Environment\Environment;
/**
* Generates snippet for a specific step in a specific environment.
*
* @see SnippetRegistry
*
* @author Konstantin Kudryashov <ever.zet@gmail.com>
*/
interface SnippetGenerator
{
/**
* Checks if generator supports search query.
*
* @param Environment $environment
* @param StepNode $step
*
* @return bool
*/
public function supportsEnvironmentAndStep(Environment $environment, StepNode $step);
/**
* Generates snippet from search.
*
* @param Environment $environment
* @param StepNode $step
*
* @return Snippet
*/
public function generateSnippet(Environment $environment, StepNode $step);
}