setHelp() публичный Метод

Sets the help text of the application.
public setHelp ( string $help ) : static
$help string The help text.
Результат static The current instance.
Пример #1
0
 /**
  * @expectedException \InvalidArgumentException
  */
 public function testSetHelpFailsIfNoString()
 {
     $this->config->setHelp(1234);
 }