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