From ea596d7b51febe6d3e20f4ca37aed7b325516021 Mon Sep 17 00:00:00 2001 From: Achilles Kaloeridis Date: Thu, 27 Jul 2017 23:37:13 +0300 Subject: [PATCH] Adds a missing semicolon --- doctrine.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doctrine.rst b/doctrine.rst index eae1a934b5d..311a60b3d78 100644 --- a/doctrine.rst +++ b/doctrine.rst @@ -527,7 +527,7 @@ a controller, this is pretty easy. Add the following method to the { $doctrine = $this->getDoctrine(); $em = $doctrine->getManager(); - $em2 = $doctrine->getManager('other_connection') + $em2 = $doctrine->getManager('other_connection'); } .. note::