getName() public méthode

Returns the name of the application.
See also: setName()
public getName ( ) : string
Résultat string The application name.
 public function testSetNameNull()
 {
     $this->config->setName('the-name');
     $this->config->setName(null);
     $this->assertNull($this->config->getName());
 }