From aff9c2ce606c04808743a0632836043d71956fc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Perrin?= Date: Tue, 4 Nov 2014 11:15:19 +0100 Subject: [PATCH] Add missing space in code --- components/dependency_injection/tags.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/dependency_injection/tags.rst b/components/dependency_injection/tags.rst index ab523a10a77..500aa1bb3e0 100644 --- a/components/dependency_injection/tags.rst +++ b/components/dependency_injection/tags.rst @@ -211,7 +211,7 @@ To begin with, change the ``TransportChain`` class:: public function getTransport($alias) { if (array_key_exists($alias, $this->transports)) { - return $this->transports[$alias]; + return $this->transports[$alias]; } } }