Webmozart\Console\Api\Config\OptionCommandConfig::setLongName PHP Метод

setLongName() публичный Метод

Alias of {@link setName()}.
public setLongName ( string $name ) : static
$name string The command name.
Результат static The current instance.
    public function setLongName($name)
    {
        return $this->setName($name);
    }

Usage Example

Пример #1
0
 public function testSetLongName()
 {
     $this->config->setLongName('delete');
     $this->assertSame('delete', $this->config->getLongName());
     $this->assertSame('delete', $this->config->getName());
 }