Improved some commands

This commit is contained in:
William DURAND 2011-04-13 22:27:07 +02:00
commit ed1d9ad267
5 changed files with 38 additions and 2 deletions

View file

@ -31,7 +31,7 @@ abstract class PhingCommand extends Command
protected $additionalPhingArgs = array();
protected $tempSchemas = array();
protected $tmpDir = null;
protected $debug;
protected $buffer = null;
protected function callPhing($taskName, $properties = array())
{
@ -141,6 +141,7 @@ abstract class PhingCommand extends Command
$m->runBuild();
if ($bufferPhingOutput) {
$this->buffer = ob_get_contents();
ob_end_clean();
}