Elcodi\Plugin\StoreSetupWizardBundle\Services\WizardStatus::__construct PHP Method

__construct() public method

Builds a new WizardStepChecker
public __construct ( Elcodi\Component\Product\Repository\ProductRepository $productRepository, Elcodi\Component\Store\Entity\Interfaces\StoreInterface $store, array $enabledPaymentPlugins, array $enabledShippingPlugins )
$productRepository Elcodi\Component\Product\Repository\ProductRepository Product repository
$store Elcodi\Component\Store\Entity\Interfaces\StoreInterface Store
$enabledPaymentPlugins array The enabled payment methods
$enabledShippingPlugins array The enabled shipping methods
    public function __construct(ProductRepository $productRepository, StoreInterface $store, array $enabledPaymentPlugins, array $enabledShippingPlugins)
    {
        $this->productRepository = $productRepository;
        $this->store = $store;
        $this->enabledPaymentPlugins = $enabledPaymentPlugins;
        $this->enabledShippingPlugins = $enabledShippingPlugins;
    }