From 51bdd6499a3d3a0b146fb91064e71c13ca97e8d0 Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Mon, 31 Jan 2011 22:46:41 +0100 Subject: [PATCH] Fix typo in codeigniter coobkok entry --- en/cookbook/integrating-with-codeigniter.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/en/cookbook/integrating-with-codeigniter.rst b/en/cookbook/integrating-with-codeigniter.rst index fcc7ac774..1c06a34e2 100644 --- a/en/cookbook/integrating-with-codeigniter.rst +++ b/en/cookbook/integrating-with-codeigniter.rst @@ -49,7 +49,7 @@ Customize it to your needs. Doctrine\ORM\Configuration, Doctrine\ORM\EntityManager, Doctrine\Common\Cache\ArrayCache, - Doctrine\DBAL\Logging\EchoSqlLogger; + Doctrine\DBAL\Logging\EchoSQLLogger; class Doctrine { @@ -86,8 +86,8 @@ Customize it to your needs. $config->setProxyNamespace('Proxies'); // Set up logger - $logger = new EchoSqlLogger; - $config->setSqlLogger($logger); + $logger = new EchoSQLLogger; + $config->setSQLLogger($logger); $config->setAutoGenerateProxyClasses( TRUE );