AppserverIo\Appserver\Core\Traits\ThreadedContextTrait::unmaskKey PHP Method

unmaskKey() public method

Umasks the unique key.
public unmaskKey ( string $key ) : string
$key string The unique key to unmask
return string The unmasked key
    public function unmaskKey($key)
    {
        return str_replace(sprintf('%s-', $this->getSerial()), '', $key);
    }