Sylius\Behat\Context\Ui\Admin\ManagingTaxonsContext::__construct PHP Method

__construct() public method

public __construct ( Sylius\Behat\Service\SharedStorageInterface $sharedStorage, Sylius\Behat\Page\Admin\Taxon\CreatePageInterface $createPage, Sylius\Behat\Page\Admin\Taxon\CreateForParentPageInterface $createForParentPage, Sylius\Behat\Page\Admin\Taxon\UpdatePageInterface $updatePage, Sylius\Behat\Service\Resolver\CurrentPageResolverInterface $currentPageResolver )
$sharedStorage Sylius\Behat\Service\SharedStorageInterface
$createPage Sylius\Behat\Page\Admin\Taxon\CreatePageInterface
$createForParentPage Sylius\Behat\Page\Admin\Taxon\CreateForParentPageInterface
$updatePage Sylius\Behat\Page\Admin\Taxon\UpdatePageInterface
$currentPageResolver Sylius\Behat\Service\Resolver\CurrentPageResolverInterface
    public function __construct(SharedStorageInterface $sharedStorage, CreatePageInterface $createPage, CreateForParentPageInterface $createForParentPage, UpdatePageInterface $updatePage, CurrentPageResolverInterface $currentPageResolver)
    {
        $this->sharedStorage = $sharedStorage;
        $this->createPage = $createPage;
        $this->createForParentPage = $createForParentPage;
        $this->updatePage = $updatePage;
        $this->currentPageResolver = $currentPageResolver;
    }