ContextStorageScopeInterface.php
Namespace
OpenTelemetry\ContextFile
-
vendor/
open-telemetry/ context/ ContextStorageScopeInterface.php
View source
<?php
declare (strict_types=1);
namespace OpenTelemetry\Context;
use ArrayAccess;
/**
* @psalm-suppress MissingTemplateParam
*/
interface ContextStorageScopeInterface extends ScopeInterface, ArrayAccess {
/**
* Returns the context associated with this scope.
*
* @return ContextInterface associated context
*/
public function context() : ContextInterface;
/**
* @param string $offset
*/
public function offsetSet($offset, $value) : void;
}
Interfaces
Title | Deprecated | Summary |
---|---|---|
ContextStorageScopeInterface | @psalm-suppress MissingTemplateParam |