getDisplayName() 공개 메소드

If no display name is set with {@link setDisplayName()}, the humanized application name is returned.
또한 보기: setDisplayName()
public getDisplayName ( ) : string
리턴 string The display name.
예제 #1
0
 public function testGetDisplayNameReturnsHumanizedNameByDefault()
 {
     $this->config->setName('the-name');
     $this->assertSame('The Name', $this->config->getDisplayName());
 }