From d528b7481f797049d4547c217a553c0c8b575b19 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 8 Jun 2011 15:20:37 +0200 Subject: [PATCH] fixed typo --- .../Bundle/FrameworkBundle/Command/CacheClearCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/CacheClearCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/CacheClearCommand.php index df9c90fba0..0b0bbc5b14 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/CacheClearCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/CacheClearCommand.php @@ -138,6 +138,6 @@ EOF; $class = "$namespace\\$class"; - return new $class($parent->getEnvironment(), $parent->getDebug()); + return new $class($parent->getEnvironment(), $parent->isDebug()); } }