setDisplayName() public method

Sets the application name as it is displayed in the help.
See also: getDisplayName()
public setDisplayName ( string $displayName ) : static
$displayName string The display name.
return static The current instance.
Ejemplo n.º 1
0
 /**
  * @expectedException \InvalidArgumentException
  */
 public function testSetDisplayNameFailsIfNoString()
 {
     $this->config->setDisplayName(1234);
 }