Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. /**
  2. * Cron job config
  3. *
  4. * @var MagentoCronModelConfig
  5. */
  6.  
  7. protected $config;
  8.  
  9. public function __construct(
  10. MagentoCronModelConfig $config
  11. ) {
  12. $this->config = $config;
  13. }
  14.  
  15.  
  16. public function execute(MagentoCronModelSchedule $schedule)
  17. {
  18. $jobsRoot = $this->config->getJobs()
  19. ....
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement