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

maskKey() public method

Creates a unique identifier to append attributes to the internal property table.
public maskKey ( string $key ) : string
$key string The key used to create a unique identifier
return string The unique identifier
    public function maskKey($key)
    {
        return sprintf('%s-%s', $this->getSerial(), $key);
    }