<?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(); }