Overrides TextMapPropagatorInterface::extract
public function extract($carrier, ?PropagationGetterInterface $getter = null, ?ContextInterface $context = null) : ContextInterface { $context ??= Context::getCurrent(); foreach ($this->propagators as $propagator) { $context = $propagator->extract($carrier, $getter, $context); } return $context; }