Overrides ContextStorageInterface::current
public function current() : ContextInterface { $head = $this->heads[Fiber::getCurrent() ?? $this] ?? null; if (!$head?->node && Fiber::getCurrent()) { self::triggerNotInitializedFiberContextWarning(); // Fallback to {main} to preserve BC $head = $this->heads[$this]; } return $head->node->context ?? Context::getRoot(); }