From 1c0ce8edd5356ea07e4256001098ac417495e83f 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 b77cbfab1d5..5b45741e783 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;