Webmozart\Console\Api\Config\OptionCommandConfig::setLongName PHP Method

setLongName() public method

Alias of {@link setName()}.
public setLongName ( string $name ) : static
$name string The command name.
return static The current instance.
    public function setLongName($name)
    {
        return $this->setName($name);
    }

Usage Example

 public function testSetLongName()
 {
     $this->config->setLongName('delete');
     $this->assertSame('delete', $this->config->getLongName());
     $this->assertSame('delete', $this->config->getName());
 }