CommandListInterface.php 407 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Console;
  7. /**
  8. * Contains a list of Console commands
  9. * @api
  10. * @since 100.0.2
  11. */
  12. interface CommandListInterface
  13. {
  14. /**
  15. * Gets list of command instances
  16. *
  17. * @return \Symfony\Component\Console\Command\Command[]
  18. */
  19. public function getCommands();
  20. }