setDisplayName() 공개 메소드

Sets the application name as it is displayed in the help.
또한 보기: getDisplayName()
public setDisplayName ( string $displayName ) : static
$displayName string The display name.
리턴 static The current instance.
예제 #1
0
 /**
  * @expectedException \InvalidArgumentException
  */
 public function testSetDisplayNameFailsIfNoString()
 {
     $this->config->setDisplayName(1234);
 }