/**
  * Constructor.
  *
  * @param PluginRepository $pluginRepository    Plugin repository
  * @param ObjectManager    $pluginObjectManager pluginObjectManager
  */
 public function __construct(PluginRepository $pluginRepository, ObjectManager $pluginObjectManager)
 {
     parent::__construct();
     $this->pluginRepository = $pluginRepository;
     $this->pluginObjectManager = $pluginObjectManager;
 }
 /**
  * Construct.
  *
  * @param ContainerInterface $container Container
  */
 public function __construct(ContainerInterface $container)
 {
     $this->container = $container;
     parent::__construct();
 }
 /**
  * Construct method.
  *
  * @param CurrencyExchangeRatesPopulator $currencyExchangeRatesPopulator CurrencyExchangeRates populator
  */
 public function __construct(CurrencyExchangeRatesPopulator $currencyExchangeRatesPopulator)
 {
     parent::__construct();
     $this->currencyExchangeRatesPopulator = $currencyExchangeRatesPopulator;
 }
 /**
  * Constructor.
  *
  * @param EntityTranslatorEventDispatcher $entityTranslationEventDispatcher Entity translator event dispatcher
  */
 public function __construct(EntityTranslatorEventDispatcher $entityTranslationEventDispatcher)
 {
     parent::__construct();
     $this->entityTranslationEventDispatcher = $entityTranslationEventDispatcher;
 }
 /**
  * Construct.
  *
  * @param MetricLoader $metricLoader Metric loader
  */
 public function __construct(MetricLoader $metricLoader)
 {
     parent::__construct();
     $this->metricLoader = $metricLoader;
 }
 /**
  * Construct
  *
  * @param KernelInterface $kernel                Kernel
  * @param ObjectManager   $locationEntityManager Location entity manager
  */
 public function __construct(KernelInterface $kernel, ObjectManager $locationEntityManager)
 {
     parent::__construct();
     $this->kernel = $kernel;
     $this->locationEntityManager = $locationEntityManager;
 }
 /**
  * Constructor.
  *
  * @param ConfigurationManager $configurationManager Configuration manager
  */
 public function __construct(ConfigurationManager $configurationManager)
 {
     parent::__construct();
     $this->configurationManager = $configurationManager;
 }
 /**
  * Constructor.
  *
  * @param PluginManager $pluginManager Plugin manager
  */
 public function __construct(PluginManager $pluginManager)
 {
     parent::__construct();
     $this->pluginManager = $pluginManager;
 }
Exemple #9
0
 /**
  * Constructor
  *
  * @param PluginRepository $pluginRepository Plugin repository
  */
 public function __construct(PluginRepository $pluginRepository)
 {
     parent::__construct();
     $this->pluginRepository = $pluginRepository;
 }
 /**
  * Construct.
  *
  * @param ObjectDirector $locationDirector Location director
  */
 public function __construct(ObjectDirector $locationDirector)
 {
     $this->locationDirector = $locationDirector;
     parent::__construct();
 }