httpAsyncClient = $httpAsyncClient; } public static function create(?HttpAsyncClient $httpAsyncClient = null): self { return new self($httpAsyncClient); } public function resolveHttpPlugAsyncClient(): HttpAsyncClient { return $this->httpAsyncClient ??= HttpAsyncClientDiscovery::find(); } }