* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Behat\Behat\Context\Initializer; use Behat\Behat\Context\Context; /** * Initializes contexts using custom logic. * * @author Konstantin Kudryashov */ interface ContextInitializer { /** * Initializes provided context. * * @param Context $context */ public function initializeContext(Context $context); }