├── Context.php ├── ContextInterface.php ├── ContextKey.php ├── ContextKeyInterface.php ├── ContextKeys.php ├── ContextStorage.php ├── ContextStorageHead.php ├── ContextStorageHeadAware.php ├── ContextStorageInterface.php ├── ContextStorageNode.php ├── ContextStorageScopeInterface.php ├── DebugScope.php ├── ExecutionContextAwareInterface.php ├── FiberBoundContextStorage.php ├── FiberBoundContextStorageExecutionAwareBC.php ├── ImplicitContextKeyedInterface.php ├── Propagation ├── ArrayAccessGetterSetter.php ├── EnvironmentGetterSetter.php ├── ExtendedPropagationGetterInterface.php ├── MultiResponsePropagator.php ├── MultiTextMapPropagator.php ├── NoopResponsePropagator.php ├── NoopTextMapPropagator.php ├── PropagationGetterInterface.php ├── PropagationSetterInterface.php ├── ResponsePropagatorInterface.php ├── SanitizeCombinedHeadersPropagationGetter.php └── TextMapPropagatorInterface.php ├── README.md ├── ScopeInterface.php ├── ZendObserverFiber.php ├── composer.json └── fiber ├── initialize_fiber_handler.php └── zend_observer_fiber.h /Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/Context.php -------------------------------------------------------------------------------- /ContextInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/ContextInterface.php -------------------------------------------------------------------------------- /ContextKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/ContextKey.php -------------------------------------------------------------------------------- /ContextKeyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/ContextKeyInterface.php -------------------------------------------------------------------------------- /ContextKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/ContextKeys.php -------------------------------------------------------------------------------- /ContextStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/ContextStorage.php -------------------------------------------------------------------------------- /ContextStorageHead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/ContextStorageHead.php -------------------------------------------------------------------------------- /ContextStorageHeadAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/ContextStorageHeadAware.php -------------------------------------------------------------------------------- /ContextStorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/ContextStorageInterface.php -------------------------------------------------------------------------------- /ContextStorageNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/ContextStorageNode.php -------------------------------------------------------------------------------- /ContextStorageScopeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/ContextStorageScopeInterface.php -------------------------------------------------------------------------------- /DebugScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/DebugScope.php -------------------------------------------------------------------------------- /ExecutionContextAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/ExecutionContextAwareInterface.php -------------------------------------------------------------------------------- /FiberBoundContextStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/FiberBoundContextStorage.php -------------------------------------------------------------------------------- /FiberBoundContextStorageExecutionAwareBC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/FiberBoundContextStorageExecutionAwareBC.php -------------------------------------------------------------------------------- /ImplicitContextKeyedInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/ImplicitContextKeyedInterface.php -------------------------------------------------------------------------------- /Propagation/ArrayAccessGetterSetter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/Propagation/ArrayAccessGetterSetter.php -------------------------------------------------------------------------------- /Propagation/EnvironmentGetterSetter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/Propagation/EnvironmentGetterSetter.php -------------------------------------------------------------------------------- /Propagation/ExtendedPropagationGetterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/Propagation/ExtendedPropagationGetterInterface.php -------------------------------------------------------------------------------- /Propagation/MultiResponsePropagator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/Propagation/MultiResponsePropagator.php -------------------------------------------------------------------------------- /Propagation/MultiTextMapPropagator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/Propagation/MultiTextMapPropagator.php -------------------------------------------------------------------------------- /Propagation/NoopResponsePropagator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/Propagation/NoopResponsePropagator.php -------------------------------------------------------------------------------- /Propagation/NoopTextMapPropagator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/Propagation/NoopTextMapPropagator.php -------------------------------------------------------------------------------- /Propagation/PropagationGetterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/Propagation/PropagationGetterInterface.php -------------------------------------------------------------------------------- /Propagation/PropagationSetterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/Propagation/PropagationSetterInterface.php -------------------------------------------------------------------------------- /Propagation/ResponsePropagatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/Propagation/ResponsePropagatorInterface.php -------------------------------------------------------------------------------- /Propagation/SanitizeCombinedHeadersPropagationGetter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/Propagation/SanitizeCombinedHeadersPropagationGetter.php -------------------------------------------------------------------------------- /Propagation/TextMapPropagatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/Propagation/TextMapPropagatorInterface.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/README.md -------------------------------------------------------------------------------- /ScopeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/ScopeInterface.php -------------------------------------------------------------------------------- /ZendObserverFiber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/ZendObserverFiber.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/composer.json -------------------------------------------------------------------------------- /fiber/initialize_fiber_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/fiber/initialize_fiber_handler.php -------------------------------------------------------------------------------- /fiber/zend_observer_fiber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentelemetry-php/context/HEAD/fiber/zend_observer_fiber.h --------------------------------------------------------------------------------