From c06a9c7cf1b8cafb6a1477ec4f58c4c14c7c1c9e Mon Sep 17 00:00:00 2001 From: Jakub Turek Date: Sat, 21 Feb 2015 17:18:03 +0100 Subject: [PATCH] Fix code style in CompileCommand according to PSR2 coding rules --- Mage/Command/BuiltIn/CompileCommand.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Mage/Command/BuiltIn/CompileCommand.php b/Mage/Command/BuiltIn/CompileCommand.php index f03555b..56e00bb 100644 --- a/Mage/Command/BuiltIn/CompileCommand.php +++ b/Mage/Command/BuiltIn/CompileCommand.php @@ -42,13 +42,23 @@ class CompileCommand extends AbstractCommand public function run() { if (ini_get('phar.readonly')) { - Console::output('The php.ini variable phar.readonly must be Off.', 1, 2); + Console::output( + 'The php.ini variable phar.readonly' + . ' must be Off.', + 1, + 2 + ); + return 200; } $this->compiler->compile(); - Console::output('mage.phar compiled successfully', 0, 2); + Console::output( + 'mage.phar compiled successfully', + 0, + 2 + ); return 0; }