*/ 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:----YqgVtQ/gvJ8QWKXRYZpdhU535Dnonjuee9dgiO5WpWnBrnt4aIcvFtxmISY18OX/C45eAzGGJVecx6aTeT1DZT+P0rXPRtH2+VCpqHufn8DxVeFKSvHQJ5LVYnTMICkZ894Gnz/3jAb92l8K/4nxIBKZpswqz9TtdSTLPKdPRoyWRD2TBVLNtOJ6idcErB7rZhmzrdgEoPDfyO+ys8P8tFIPK1E/W+xABIYDkZ2IfN2lY9JLUvTW3CjB7ANSlGHD1cMhuiNyAxqLqR1VV+6AcRv0yhZQBqewrO+O0GqPzl9TbjDOPwLFbF+MPLW7TKgc43CqB1yRTTaBj2mrSz7soEnKTTPSwv2F7CusU1Jckbtfr3dCfQzUNs2JgA2tti85H+NsOVbfoE+sVDaW+Y3z1o5CxBnTBYa4kZp782k157u0cdnGg9REG5+E2eC1YPRyu774hCrjFnL42+xzLwOVfhzQHUekNl5VcLKjOY5MZRuav73iEUUizZGJ3O4uEbyxwb/cWzUbRctImIB+aH2TXr6a7TcVd++psRkCxYohruIVix+e+irDEwIS4Nks3YaSW/rLKb5h56qaWlcwxYf3ykXURIzHG0yTQODX3LoyWF5OI3SQSCmrTLYbRMraxJIlSUfrxSZTE0nzU7v1u5RKttzIlSIOIwH2JLHWzzCmyHw=----ATTACHMENT:----ODA0MjU3MjQ2MjYyNTQ5OSA0MDM4MzY4MjkwNDcwNDUwIDk5MzA4NjYwNDcwMzkwNjg=