From 5909b2988fe26c37cd65bfe9532ebddfd665c20b Mon Sep 17 00:00:00 2001 From: XWB Date: Wed, 30 Oct 2019 16:20:28 +0100 Subject: [PATCH] Add missing semicolon --- components/http_client.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/http_client.rst b/components/http_client.rst index 9b62301ba39..e5d88cc004e 100644 --- a/components/http_client.rst +++ b/components/http_client.rst @@ -667,7 +667,7 @@ interface you need to code against when a client is needed:: public function __construct(HttpClientInterface $client) { - $this->client = $client + $this->client = $client; } // [...]