setLongName() public method

Alias of {@link setName()}.
public setLongName ( string $name ) : static
$name string The command name.
return static The current instance.
Ejemplo n.º 1
0
 public function testSetLongName()
 {
     $this->config->setLongName('delete');
     $this->assertSame('delete', $this->config->getLongName());
     $this->assertSame('delete', $this->config->getName());
 }