getName() 공개 메소드

Returns the name of the application.
또한 보기: setName()
public getName ( ) : string
리턴 string The application name.
예제 #1
0
 public function testSetNameNull()
 {
     $this->config->setName('the-name');
     $this->config->setName(null);
     $this->assertNull($this->config->getName());
 }