setHelp() public méthode

Sets the help text of the application.
public setHelp ( string $help ) : static
$help string The help text.
Résultat static The current instance.
 /**
  * @expectedException \InvalidArgumentException
  */
 public function testSetHelpFailsIfNoString()
 {
     $this->config->setHelp(1234);
 }