CommandLoaderInterface.php 928 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Console\CommandLoader;
  11. use Symfony\Component\Console\Command\Command;
  12. use Symfony\Component\Console\Exception\CommandNotFoundException;
  13. /**
  14. * @author Robin Chalas <robin.chalas@gmail.com>
  15. */
  16. interface CommandLoaderInterface
  17. {
  18. /**
  19. * Loads a command.
  20. *
  21. * @param string $name
  22. *
  23. * @return Command
  24. *
  25. * @throws CommandNotFoundException
  26. */
  27. public function get($name);
  28. /**
  29. * Checks if a command exists.
  30. *
  31. * @param string $name
  32. *
  33. * @return bool
  34. */
  35. public function has($name);
  36. /**
  37. * @return string[] All registered command names
  38. */
  39. public function getNames();
  40. }