Behat\Behat\Gherkin\ServiceContainer\GherkinExtension::loadSuiteWithPathsSetup PHP Method

loadSuiteWithPathsSetup() private method

Loads suite with paths setup.
private loadSuiteWithPathsSetup ( ContainerBuilder $container )
$container Symfony\Component\DependencyInjection\ContainerBuilder
    private function loadSuiteWithPathsSetup(ContainerBuilder $container)
    {
        $definition = new Definition('Behat\\Behat\\Gherkin\\Suite\\Setup\\SuiteWithPathsSetup', array('%paths.base%', new Reference(FilesystemExtension::LOGGER_ID)));
        $definition->addTag(SuiteExtension::SETUP_TAG, array('priority' => 50));
        $container->setDefinition(SuiteExtension::SETUP_TAG . '.suite_with_paths', $definition);
    }