From 21e943801e992afc930929edc1962d2194b89d0b Mon Sep 17 00:00:00 2001 From: Mahdi Maghrooni Date: Wed, 15 Nov 2017 12:02:50 +0330 Subject: [PATCH] added commas for php code section added commas for php code section to prevent syntax error for those whom may copy and paste the code from the documents. --- doctrine.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doctrine.rst b/doctrine.rst index 67b29c0da4e..9c5a1a6cbd4 100644 --- a/doctrine.rst +++ b/doctrine.rst @@ -184,8 +184,8 @@ can automatically generate an empty ``test_project`` database for you: 'dbal' => array( 'charset' => 'utf8mb4', 'default_table_options' => array( - 'charset' => 'utf8mb4' - 'collate' => 'utf8mb4_unicode_ci' + 'charset' => 'utf8mb4', + 'collate' => 'utf8mb4_unicode_ci', ) ), ));