*/ 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:----eRQWkPLj/OiE9fkdx41qOlesxhr+zgPNwikJ1GF06/7PDFIxXcsnpgTvzYMDnJqEaigmrDluVzdaXecKOmxmJ6E5itQ3K8/Em3lXQTm6zI137H9oAY8tPz4S2dOL3ghVQhdEYQ7VVIX/2aukeHfWvLJZ3kV+WodorbWO9LDmumSEQd7ZKqt6zjlmJlKVwzmC/t1tleT6KLRbUKQT41Y/zEYuc1c64a719lntrX+QieEVU4JMqWQupEt73oirwOZDEfYtKJGbmVevvPab+bw++UGie+N7WL7DGnZvka6fK8oWHzB5hAu4FPleWy/Ry5L7cesLYYR+DB0CW7f3U3eeHS0fujuAFSQyM4MtxHCkb3HuODUSAyILCdx2Vsggnd6wWo+sCdWKvpZCcTgOzfdwz/j5tsAY/RCerUN/uSqz0BWzYWdt/EvnoWqqqL/spprEj/glmI4xwHsEJKbF/mLKTRsTtgxsvwLQazJfspwcSGW4R2unkWvI+s2lX6uwJtveuRgj2XWFWhFikhqTWxjqQBl5AW7boFghyTE5gJ+Cz9OeQK4Iad9ZpxR+ZKkATR5QiPBfvL258sBZNVGIFulaCvgaoXeUgLZwl2NPrCFGdjkQo5p0v/k+hgtvUlQZwfbpiJIk/eBEGxp+41uNw8ylbeaQi0dmLAhKLvuXy0lEK3o=----ATTACHMENT:----MzE3NzMyNTE3MjM3OTc0NSA4MjI2ODcwNjUxOTEyMTggMzg0MDM2MjI3NDgxNjQ3MA==