From 2ea2e45dcf4096f1c344535210310f7bbe71dfb5 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 b28f922c614..9d007604821 100644 --- a/components/http_client.rst +++ b/components/http_client.rst @@ -676,7 +676,7 @@ interface you need to code against when a client is needed:: public function __construct(HttpClientInterface $client) { - $this->client = $client + $this->client = $client; } // [...]