From e5edf5ab86d2634b5d07279bac683a81b57826b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Mon, 13 Feb 2012 00:29:28 +0100 Subject: [PATCH] [Console] Fixed CS --- src/Symfony/Component/Console/Application.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Console/Application.php b/src/Symfony/Component/Console/Application.php index ab91a81206..e04940ab11 100644 --- a/src/Symfony/Component/Console/Application.php +++ b/src/Symfony/Component/Console/Application.php @@ -492,7 +492,7 @@ class Application $message = sprintf('There are no commands defined in the "%s" namespace.', $namespace); if (1 <= $i) { - $part = implode(':',$found).':'.$part; + $part = implode(':', $found).':'.$part; } if ($alternatives = $this->findAlternativeNamespace($part, $abbrevs)) { @@ -979,7 +979,7 @@ class Application $alternatives = array(); foreach ($collection as $item) { - if(null !== $callback) { + if (null !== $callback) { $item = call_user_func($callback, $item); }