From 0feee34fb255b47e5e2384025fa96d073aaf4ef6 Mon Sep 17 00:00:00 2001 From: Facundo Capua Date: Wed, 24 Dec 2014 12:55:12 -0300 Subject: [PATCH] Fix code format --- lib/internal/Magento/Framework/App/Cache/ManagerApp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/Magento/Framework/App/Cache/ManagerApp.php b/lib/internal/Magento/Framework/App/Cache/ManagerApp.php index 5a941e9885cdc..12911084c4b2d 100644 --- a/lib/internal/Magento/Framework/App/Cache/ManagerApp.php +++ b/lib/internal/Magento/Framework/App/Cache/ManagerApp.php @@ -95,7 +95,7 @@ public function launch() $this->cacheManager->clean($types); $output[] = 'Cleaned cache types:'; $output[] = join("\n", $types); - } elseif (isset($this->requestArgs[self::KEY_STATUS])){ + } elseif (isset($this->requestArgs[self::KEY_STATUS])) { $output[] = 'Current status:'; foreach ($this->cacheManager->getStatus() as $cache => $status) { $output[] = sprintf('%30s: %d', $cache, $status);