* * @internal */ trait ProxyTrait { private object $pool; public function prune(): bool { return $this->pool instanceof PruneableInterface && $this->pool->prune(); } public function reset(): void { if ($this->pool instanceof ResetInterface) { $this->pool->reset(); } } }