Commit: 776c6f242df425d6f9e834e0ab960be72bea4729

Author: Marke Hallowell | Date: 2010-01-30 15:23:33 -0800
fixed syntax command code to pass syntax command
diff --git a/extensions/command/Syntax.php b/extensions/command/Syntax.php index 798430f..ce70da1 100644 --- a/extensions/command/Syntax.php +++ b/extensions/command/Syntax.php @@ -95,7 +95,7 @@ class Syntax extends \lithium\console\Command implements \spriebsch\PHPca\Progre } public function showProgress($file, Result $result, Application $application) { - $message = 'syntax check of `' . str_replace($this->_project . '/', null, $file) .'`'; + $message = 'syntax check of `' . str_replace($this->_project . '/', null, $file) . '`'; if ($result->wasSkipped($file)) { $this->out("[Skipped] {$message}");