. */ require_once 'phing/tasks/system/EchoTask.php'; /** * Simple task to echo a warning message (Project::MSG_WARN) to all output devices. * * @author Hans Lellelid * @version $Revision: 905 $ $Date: 2010-10-05 18:28:03 +0200 (Tue, 05 Oct 2010) $ * @package phing.tasks.system */ class WarnTask extends EchoTask { function main() { $this->log($this->msg, Project::MSG_WARN); } }