Chris@0: setName('exit') Chris@0: ->setAliases(array('quit', 'q')) Chris@0: ->setDefinition(array()) Chris@0: ->setDescription('End the current session and return to caller.') Chris@0: ->setHelp( Chris@0: <<<'HELP' Chris@0: End the current session and return to caller. Chris@0: Chris@0: e.g. Chris@0: >>> exit Chris@0: HELP Chris@0: ); Chris@0: } Chris@0: Chris@0: /** Chris@0: * {@inheritdoc} Chris@0: */ Chris@0: protected function execute(InputInterface $input, OutputInterface $output) Chris@0: { Chris@0: throw new BreakException('Goodbye.'); Chris@0: } Chris@0: }