TasksProviderInterface.php 355 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Crontab;
  7. /**
  8. * Interface \Magento\Framework\Crontab\TasksProviderInterface
  9. *
  10. */
  11. interface TasksProviderInterface
  12. {
  13. /**
  14. * Get list of tasks
  15. *
  16. * @return array
  17. */
  18. public function getTasks();
  19. }