From f8c22abaa6b431f2e51e5124f9ee1c8c373f1892 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Thu, 22 Jul 2010 23:30:17 +0200 Subject: [PATCH] Use $applicationMode flag in obtaining entity manager example to make sure people understand that different settings for production and development are necessary --- manual/en/configuration.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/en/configuration.txt b/manual/en/configuration.txt index a76e09db5..e5b2fdf34 100644 --- a/manual/en/configuration.txt +++ b/manual/en/configuration.txt @@ -102,7 +102,7 @@ with the following minimalist configuration: if ($applicationMode == "development") { $config->setAutoGenerateProxyClasses(true); } else { - $config->setAutoGenerateProxyClasses(true); + $config->setAutoGenerateProxyClasses(false); } $connectionOptions = array(