File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public static function storage(): ContextStorageInterface
5353 /**
5454 * @param ContextInterface|false|null $context
5555 *
56- * @internal
56+ * @internal OpenTelemetry
5757 */
5858 public static function resolve ($ context , ?ContextStorageInterface $ contextStorage = null ): ContextInterface
5959 {
Original file line number Diff line number Diff line change 88
99interface ScopeInterface
1010{
11- /** Already detached. */
11+ /** The associated context was already detached. */
1212 public const DETACHED = 1 << (PHP_INT_SIZE << 3 ) - 1 ;
13- /** Execution context inactive . */
13+ /** The associated context is not in the active execution context . */
1414 public const INACTIVE = 1 << (PHP_INT_SIZE << 3 ) - 2 ;
15- /** Not current context. */
15+ /** The associated context is not the active context. */
1616 public const MISMATCH = 1 << (PHP_INT_SIZE << 3 ) - 3 ;
1717
1818 /**
You can’t perform that action at this time.
0 commit comments