12345678910111213141516171819202122 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Cron\Model;
- /**
- * Interface \Magento\Cron\Model\ConfigInterface
- *
- * @api
- * @since 100.0.2
- */
- interface ConfigInterface
- {
- /**
- * Return list of cron jobs
- *
- * @return array
- */
- public function getJobs();
- }
|