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);
 }