setName() 공개 메소드

Sets the name of the application.
또한 보기: getName()
public setName ( string $name ) : static
$name string The application name.
리턴 static The current instance.
예제 #1
0
 public function testGetDisplayNameReturnsHumanizedNameByDefault()
 {
     $this->config->setName('the-name');
     $this->assertSame('The Name', $this->config->getDisplayName());
 }