public function __construct(FolderMapper $folderMapper, IL10N $l10n, ITimeFactory $timeFactory, Config $config) { parent::__construct($folderMapper); $this->l10n = $l10n; $this->timeFactory = $timeFactory; $this->autoPurgeMinimumInterval = $config->getAutoPurgeMinimumInterval(); $this->folderMapper = $folderMapper; }
public function __construct(ItemMapper $itemMapper, StatusFlag $statusFlag, ITimeFactory $timeFactory, Config $config, IConfig $systemConfig) { parent::__construct($itemMapper); $this->statusFlag = $statusFlag; $this->config = $config; $this->timeFactory = $timeFactory; $this->itemMapper = $itemMapper; $this->systemConfig = $systemConfig; }
public function __construct(FeedMapper $feedMapper, Fetcher $feedFetcher, ItemMapper $itemMapper, ILogger $logger, IL10N $l10n, ITimeFactory $timeFactory, Config $config, HTMLPurifier $purifier, $LoggerParameters) { parent::__construct($feedMapper); $this->feedFetcher = $feedFetcher; $this->itemMapper = $itemMapper; $this->logger = $logger; $this->l10n = $l10n; $this->timeFactory = $timeFactory; $this->autoPurgeMinimumInterval = $config->getAutoPurgeMinimumInterval(); $this->purifier = $purifier; $this->feedMapper = $feedMapper; $this->loggerParams = $LoggerParameters; }
public function __construct($mapper) { parent::__construct($mapper); }