Webmozart\Console\Api\Config\OptionCommandConfig::getLongName PHP 메소드

getLongName() 공개 메소드

Alias of {@link getName()}.
public getLongName ( ) : string
리턴 string The command name.
    public function getLongName()
    {
        return $this->getName();
    }

Usage Example

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