AppserverIo\Appserver\Core\Traits\ThreadedContextTrait::maskKey PHP Méthode

maskKey() public méthode

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
Résultat string The unique identifier
    public function maskKey($key)
    {
        return sprintf('%s-%s', $this->getSerial(), $key);
    }