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;
}