getAliases() public method

public getAliases ( ) : string[]
return string[]
 public function unregister(Command $command)
 {
     unset($this->knownCommands[strtolower($command->getName())]);
     foreach ($command->getAliases() as $alias) {
         unset($this->knownCommands[strtolower($alias)]);
     }
 }