From 9c9742b3247d99ce0323a10f97fb5abe30bcd75a Mon Sep 17 00:00:00 2001 From: Bartek Chmura Date: Tue, 18 Nov 2014 19:41:59 +0100 Subject: [PATCH] Terrible mistake! Comma instead of semicolon... ;-) --- best_practices/business-logic.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/best_practices/business-logic.rst b/best_practices/business-logic.rst index 87592834191..23abb880c8e 100644 --- a/best_practices/business-logic.rst +++ b/best_practices/business-logic.rst @@ -299,7 +299,7 @@ Then, enable the bundle in ``AppKernel.php``, but only for the ``dev`` and if (in_array($this->getEnvironment(), array('dev', 'test'))) { // ... - $bundles[] = new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(), + $bundles[] = new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(); } return $bundles;