Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Data.php
Go to the documentation of this file.
1 <?php
7 
9 
14 {
23  public function __construct(
24  \Magento\Cron\Model\Groups\Config\Reader\Xml $reader,
25  \Magento\Framework\Config\CacheInterface $cache,
26  $cacheId = 'cron_groups_config_cache',
27  SerializerInterface $serializer = null
28  ) {
29  parent::__construct($reader, $cache, $cacheId, $serializer);
30  }
31 
38  public function getByGroupId($groupId)
39  {
40  return $this->get()[$groupId];
41  }
42 }
__construct(\Magento\Cron\Model\Groups\Config\Reader\Xml $reader, \Magento\Framework\Config\CacheInterface $cache, $cacheId='cron_groups_config_cache', SerializerInterface $serializer=null)
Definition: Data.php:23