Chris@0
|
1 <?php
|
Chris@0
|
2
|
Chris@0
|
3 /*
|
Chris@0
|
4 * This file is part of the Symfony package.
|
Chris@0
|
5 *
|
Chris@0
|
6 * (c) Fabien Potencier <fabien@symfony.com>
|
Chris@0
|
7 *
|
Chris@0
|
8 * For the full copyright and license information, please view the LICENSE
|
Chris@0
|
9 * file that was distributed with this source code.
|
Chris@0
|
10 */
|
Chris@0
|
11
|
Chris@0
|
12 namespace Symfony\Component\Console;
|
Chris@0
|
13
|
Chris@0
|
14 /**
|
Chris@0
|
15 * Contains all events dispatched by an Application.
|
Chris@0
|
16 *
|
Chris@0
|
17 * @author Francesco Levorato <git@flevour.net>
|
Chris@0
|
18 */
|
Chris@0
|
19 final class ConsoleEvents
|
Chris@0
|
20 {
|
Chris@0
|
21 /**
|
Chris@0
|
22 * The COMMAND event allows you to attach listeners before any command is
|
Chris@0
|
23 * executed by the console. It also allows you to modify the command, input and output
|
Chris@0
|
24 * before they are handled to the command.
|
Chris@0
|
25 *
|
Chris@0
|
26 * @Event("Symfony\Component\Console\Event\ConsoleCommandEvent")
|
Chris@0
|
27 *
|
Chris@0
|
28 * @var string
|
Chris@0
|
29 */
|
Chris@0
|
30 const COMMAND = 'console.command';
|
Chris@0
|
31
|
Chris@0
|
32 /**
|
Chris@0
|
33 * The TERMINATE event allows you to attach listeners after a command is
|
Chris@0
|
34 * executed by the console.
|
Chris@0
|
35 *
|
Chris@0
|
36 * @Event("Symfony\Component\Console\Event\ConsoleTerminateEvent")
|
Chris@0
|
37 *
|
Chris@0
|
38 * @var string
|
Chris@0
|
39 */
|
Chris@0
|
40 const TERMINATE = 'console.terminate';
|
Chris@0
|
41
|
Chris@0
|
42 /**
|
Chris@0
|
43 * The EXCEPTION event occurs when an uncaught exception appears.
|
Chris@0
|
44 *
|
Chris@0
|
45 * This event allows you to deal with the exception or
|
Chris@0
|
46 * to modify the thrown exception.
|
Chris@0
|
47 *
|
Chris@0
|
48 * @Event("Symfony\Component\Console\Event\ConsoleExceptionEvent")
|
Chris@0
|
49 *
|
Chris@0
|
50 * @var string
|
Chris@0
|
51 */
|
Chris@0
|
52 const EXCEPTION = 'console.exception';
|
Chris@0
|
53 }
|