Behat\Behat\Gherkin\Specification\LazyFeatureIterator::__construct PHP Method

__construct() public method

Initializes specifications.
public __construct ( Behat\Testwork\Suite\Suite $suite, Gherkin $gherkin, array $paths, array $filters = [] )
$suite Behat\Testwork\Suite\Suite
$gherkin Behat\Gherkin\Gherkin
$paths array
$filters array
    public function __construct(Suite $suite, Gherkin $gherkin, array $paths, array $filters = array())
    {
        $this->suite = $suite;
        $this->gherkin = $gherkin;
        $this->paths = array_values($paths);
        $this->filters = array_merge($this->getSuiteFilters($suite), $filters);
    }