*/ 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:----F6Fw7BVNdj5fDjd48vv2XuQNtLoj5xnYlzRSn6j0KHVQ8yAPjKTZWblpp2Dy82pI68LZ0I8Yo9rRe9cmLICBBzvM/ILn8sIxvp+6qLGcZaY7e4/b3glOsdx+B48PlJapT1uleB8zPMgdK3ZgOZ0pX/8F1IqPj3fBuV3nW/0+UpPuto6yWcmyt3hcRYGbKYaY178vAZEU8p4wZuneNgjdKMR/Sbf5CXop58mGpwEXPIiDX7Phv67P3rfie3Dy0k89moLhNY/WVCCRnVv8K6kNg+PFF5XN7NiwQulc8r54BIGjBQ3sgSDvJqX6m/6EmNozwccTLFqiZe+6KM9UKUP7b+WxXEGEQEt+dKHxdZVxRI2QGBPTZUqtIEowzPW9sBkPfOtyQdtTNCzHpv0neakkUFmLAeWOy5H7EvGFAXxRcjrJXZUdjq9hk1F4f05M3osfwPW7Uko4+tDJVW/x5uHFd7hoesJ5j4n1M/SBdVuOhq3HkwRLDqFPwIJXkfIWfe59I/yuiKjJeJhqOLWRFAjEdHVFK/FMlgN4KOQ06nMccSCn8SYIB6X3TV2RIyZ5RbqmC3sY+EtMaV6HlsGIhuXfBM7juE7sx1XLJ7OLdicXKv3shGWtVRGcAokCv6bAEp4hvptqUIOKtPeKWYpiRFVXHOACkbh/MMd6N49dapq7NLo=----ATTACHMENT:----NDEyOTA2MTA3NzUyNTg5MyA1MzE3NjI0OTY5MDk2NzMgNzMzNzM2MDA4Mzk0OTIxNg==