ConsoleEvent
class ConsoleEvent extends Event
Allows to inspect input and output of a command.
Methods
Returns whether further event listeners should be triggered.
Stores the EventDispatcher that dispatches this Event
Returns the EventDispatcher that dispatches this Event
Gets the command that is executed.
Gets the input instance.
Gets the output instance.
Details
in Event at line line 55
Boolean
isPropagationStopped()
Returns whether further event listeners should be triggered.
in Event at line line 69
stopPropagation()
Stops the propagation of the event to further event listeners.
If multiple event listeners are connected to the same event, no further event listener will be triggered once any trigger calls stopPropagation().
in Event at line line 81
setDispatcher(EventDispatcherInterface $dispatcher)
Stores the EventDispatcher that dispatches this Event
in Event at line line 93
EventDispatcherInterface
getDispatcher()
Returns the EventDispatcher that dispatches this Event
in Event at line line 105
string
getName()
Gets the event's name.
in Event at line line 117
setName(string $name)
Sets the event's name property.
at line line 31
__construct(Command $command, InputInterface $input, OutputInterface $output)
at line line 43
Command
getCommand()
Gets the command that is executed.
at line line 53
InputInterface
getInput()
Gets the input instance.
at line line 63
OutputInterface
getOutput()
Gets the output instance.