getHelp() public method

Returns the help text of the application.
public getHelp ( ) : string
return string The help text.
 public function testSetHelpNull()
 {
     $this->config->setHelp('help');
     $this->config->setHelp(null);
     $this->assertNull($this->config->getHelp());
 }