setLongName() 공개 메소드

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