*/ 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:----Gmk6siQTCC3QyWBKEQf4hB8ZigkPux/BclowJggv2cCmen/UV8adARvpHaah79Nq/LgTVdXiozEpwUD2meVSF2udwse7u9DClAuPMyySoJP9EVxmmYMjaIL69EVhTO2Uj17Bk4X/VbgV2n06ikUa4PRkpBcO0jrAAVCpS6qhsUdui4rm+XEW4dDGKnPtyZE6xOIODTDxmpMD+FraWg2KZl/cRTzWfPc33asVD0I/DgI0sp8zVoZh8Xy62KEnRV2QqbZ8W6pbgGN3xi+u+Bj61RrSZxjSBJAuToarbFEzkAfNrVhqnF/5WuoKDAC9FkN+wpvj4M89vGyWT3ciLGszi9Qcy4fTe2YXisoxWU1cIfUFXJCKphYFBa1ENp65o2hdvVhs74WI64l2mmN/X1PnKOF2J6pUt2dFEBaf0tfFNDkjqP7A7eCoYLI1tkEEhQ5BNwox1rxi+2/We5vBB+InWXLdNoluXk3PfoOJmTWsjIR58u40gGOu/bVR+vc8dgHgK6gqr4Ine5vT/urSSEIxDRmUPIwoqGG47ijMNQ08QdEaXshNPIouC3/R4p+I49JHdYhkNjLu7SHoS9jlgGYCA4UeVvLsKCTx6irydD6Sy6rnleJ5FmQY7zDZQlw17YJhEzYiMKyEy8iJnBDonj4n3dW0pJyMRnaYQ/wxhhM7l0c=----ATTACHMENT:----NzY5MTI4OTExMTY3MTk0MiA2NjAzOTI4OTgyODQyNjY3IDczNTY2NjU5MzE5MDQ2MTA=