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