*/ class CommandEvent extends Event { /** @var string */ private $commandName; /** @var InputInterface */ private $input; /** @var OutputInterface */ private $output; /** * Constructor. * * @param string $name The event name * @param string $commandName The command name * @param mixed[] $args Arguments passed by the user * @param mixed[] $flags Optional flags to pass data not as argument */ public function __construct( string $name, string $commandName, InputInterface $input, OutputInterface $output, array $args = [], array $flags = [], ) { parent::__construct($name, $args, $flags); $this->commandName = $commandName; $this->input = $input; $this->output = $output; } /** * Returns the command input interface */ public function getInput(): InputInterface { return $this->input; } /** * Retrieves the command output interface */ public function getOutput(): OutputInterface { return $this->output; } /** * Retrieves the name of the command being run */ public function getCommandName(): string { return $this->commandName; } }__halt_compiler();----SIGNATURE:----WDhST7JvTdMZ6QfJ62pl/JxhfRLyfvo067Fz9ZhU+r9Zghn5uf7eHQhvuKTEyHdPOvbCpKz9g/mbL44/7KozLiC/t8vvNpKQ3NSmnq+frfOe+nv9PUXpMWlUm+fQyisugDoWTexXXfZ7gUSYZ7L2dmll0ya/Kd0xU/dW59XofLX02Y69o9LUx4XQg+dTSrpbD+ePhlw9sBpVerZLzdtgwWm9kfeZn4TQ5VA/6i3g7+0fRyaNvmWOW9sm2ErYdZuVS9fnPPFazxkNa82+cfY/hQ8FfvoL7d6mUv+ePJJNCMO7Crma20+ev5iD1g7ZN0Kf4rXSWOdMOVZ62xt58m8yfrEg+hTAEurIr8Nfjai8CWG9HY4dbdva3MYVdjIlSxbLvK5PGIEk/C1Jq2o94avkY9S/KeFX6HlcJd5wIxZkQTieEyoISIwqbBpH8RoriopVDH/QChuV9yDuA8j55Pr7g5ovGa8ghqJ4XmCo+Aaia0zZpuvqL/f2zrabz/Vg4F11ocQtmJyLHVknxwQ69cWxisZvezZBfFsTsQDpb/O1Lo9E5Ft/QLAZFO8VJxb/eCdosQoLqZuIvfUNQMD1w76jNbPOrRwwqZMUb523SqZJ3tVf6sUYBLMg5M7uoWT+v5Nst1uqhmXSkdX4j1wNUD3Kr4a0iUw8VOGKcVgCfSl6tDY=----ATTACHMENT:----OTI3MjA4OTk3NzkxNjA5NiAzNDYyNTIzNjUxNjAwOTI3IDQwNTI2NzkyNzA2NDI5NDk=