Ejemplo n.º 1
0
 /**
  * Get a sample {@link Cli} object with long option, arg and command descriptions
  *
  * @return Cli Returns the sample {@link Cli} instance.
  */
 protected function getLongDescCli()
 {
     $cli = new Cli();
     $description = 'Very' . str_repeat(' long ', 30) . ' description';
     $cli->command('command-long')->description($description)->opt('opt-long', $description, false, 'string')->arg('arg-long', $description, false, 'string');
     return $cli;
 }