Sylius\Behat\Context\Setup\TaxonomyContext::__construct PHP Method

__construct() public method

public __construct ( Sylius\Component\Resource\Repository\RepositoryInterface $taxonRepository, Sylius\Component\Resource\Factory\FactoryInterface $taxonFactory, Sylius\Component\Resource\Factory\FactoryInterface $taxonTranslationFactory, Sylius\Component\Resource\Factory\FactoryInterface $taxonImageFactory, Doctrine\Common\Persistence\ObjectManager $objectManager, Sylius\Component\Core\Uploader\ImageUploaderInterface $imageUploader, Sylius\Component\Taxonomy\Generator\TaxonSlugGeneratorInterface $taxonSlugGenerator, array $minkParameters )
$taxonRepository Sylius\Component\Resource\Repository\RepositoryInterface
$taxonFactory Sylius\Component\Resource\Factory\FactoryInterface
$taxonTranslationFactory Sylius\Component\Resource\Factory\FactoryInterface
$taxonImageFactory Sylius\Component\Resource\Factory\FactoryInterface
$objectManager Doctrine\Common\Persistence\ObjectManager
$imageUploader Sylius\Component\Core\Uploader\ImageUploaderInterface
$taxonSlugGenerator Sylius\Component\Taxonomy\Generator\TaxonSlugGeneratorInterface
$minkParameters array
    public function __construct(RepositoryInterface $taxonRepository, FactoryInterface $taxonFactory, FactoryInterface $taxonTranslationFactory, FactoryInterface $taxonImageFactory, ObjectManager $objectManager, ImageUploaderInterface $imageUploader, TaxonSlugGeneratorInterface $taxonSlugGenerator, array $minkParameters)
    {
        $this->taxonRepository = $taxonRepository;
        $this->taxonFactory = $taxonFactory;
        $this->taxonTranslationFactory = $taxonTranslationFactory;
        $this->taxonImageFactory = $taxonImageFactory;
        $this->objectManager = $objectManager;
        $this->imageUploader = $imageUploader;
        $this->taxonSlugGenerator = $taxonSlugGenerator;
        $this->minkParameters = $minkParameters;
    }