ConsoleEvents.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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;
  11. /**
  12. * Contains all events dispatched by an Application.
  13. *
  14. * @author Francesco Levorato <git@flevour.net>
  15. */
  16. final class ConsoleEvents
  17. {
  18. /**
  19. * The COMMAND event allows you to attach listeners before any command is
  20. * executed by the console. It also allows you to modify the command, input and output
  21. * before they are handled to the command.
  22. *
  23. * @Event("Symfony\Component\Console\Event\ConsoleCommandEvent")
  24. */
  25. const COMMAND = 'console.command';
  26. /**
  27. * The TERMINATE event allows you to attach listeners after a command is
  28. * executed by the console.
  29. *
  30. * @Event("Symfony\Component\Console\Event\ConsoleTerminateEvent")
  31. */
  32. const TERMINATE = 'console.terminate';
  33. /**
  34. * The EXCEPTION event occurs when an uncaught exception appears
  35. * while executing Command#run().
  36. *
  37. * This event allows you to deal with the exception or
  38. * to modify the thrown exception.
  39. *
  40. * @Event("Symfony\Component\Console\Event\ConsoleExceptionEvent")
  41. *
  42. * @deprecated The console.exception event is deprecated since version 3.3 and will be removed in 4.0. Use the console.error event instead.
  43. */
  44. const EXCEPTION = 'console.exception';
  45. /**
  46. * The ERROR event occurs when an uncaught exception or error appears.
  47. *
  48. * This event allows you to deal with the exception/error or
  49. * to modify the thrown exception.
  50. *
  51. * @Event("Symfony\Component\Console\Event\ConsoleErrorEvent")
  52. */
  53. const ERROR = 'console.error';
  54. }