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

Returns the short option name of the command.
public getShortName ( ) : string
Результат string The short option name.
Пример #1
0
 public function testSetShortNameOverwritesPreviousShortName()
 {
     $this->config->setShortName('c');
     $this->config->setShortName('d');
     $this->assertSame('d', $this->config->getShortName());
 }