* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Base class for tasks that depends on a sfCommandApplication object. * * @package symfony * @subpackage task * @author Fabien Potencier * @version SVN: $Id: sfCommandApplicationTask.class.php 19112 2009-06-10 06:32:12Z fabien $ */ abstract class sfCommandApplicationTask extends sfTask { protected $commandApplication = null; /** * Sets the command application instance for this task. * * @param sfCommandApplication $commandApplication A sfCommandApplication instance */ public function setCommandApplication(sfCommandApplication $commandApplication = null) { $this->commandApplication = $commandApplication; } /** * @see sfTask */ public function log($messages) { if (is_null($this->commandApplication) || $this->commandApplication->isVerbose()) { parent::log($messages); } } /** * @see sfTask */ public function logSection($section, $message, $size = null, $style = 'INFO') { if (is_null($this->commandApplication) || $this->commandApplication->isVerbose()) { parent::logSection($section, $message, $size, $style); } } }