Sylius\Behat\Context\Ui\UserContext::__construct PHP Method

__construct() public method

public __construct ( Sylius\Behat\Service\SharedStorageInterface $sharedStorage, Sylius\Component\User\Repository\UserRepositoryInterface $userRepository, Sylius\Behat\Page\Admin\Customer\ShowPageInterface $customerShowPage, Sylius\Behat\Page\Shop\HomePageInterface $homePage )
$sharedStorage Sylius\Behat\Service\SharedStorageInterface
$userRepository Sylius\Component\User\Repository\UserRepositoryInterface
$customerShowPage Sylius\Behat\Page\Admin\Customer\ShowPageInterface
$homePage Sylius\Behat\Page\Shop\HomePageInterface
    public function __construct(SharedStorageInterface $sharedStorage, UserRepositoryInterface $userRepository, ShowPageInterface $customerShowPage, HomePageInterface $homePage)
    {
        $this->sharedStorage = $sharedStorage;
        $this->userRepository = $userRepository;
        $this->customerShowPage = $customerShowPage;
        $this->homePage = $homePage;
    }