setName() public method

Sets the name of the application.
See also: getName()
public setName ( string $name ) : static
$name string The application name.
return static The current instance.
コード例 #1
0
 public function testGetDisplayNameReturnsHumanizedNameByDefault()
 {
     $this->config->setName('the-name');
     $this->assertSame('The Name', $this->config->getDisplayName());
 }