getDisplayName() public méthode

If no display name is set with {@link setDisplayName()}, the humanized application name is returned.
See also: setDisplayName()
public getDisplayName ( ) : string
Résultat string The display name.
 public function testGetDisplayNameReturnsHumanizedNameByDefault()
 {
     $this->config->setName('the-name');
     $this->assertSame('The Name', $this->config->getDisplayName());
 }