Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Config.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Cron\Model;
7 
12 {
18  protected $_configData;
19 
25  public function __construct(\Magento\Cron\Model\Config\Data $configData)
26  {
27  $this->_configData = $configData;
28  }
29 
35  public function getJobs()
36  {
37  return $this->_configData->getJobs();
38  }
39 }
__construct(\Magento\Cron\Model\Config\Data $configData)
Definition: Config.php:25