. */ /** * Wrapper for comments for ionCube tasks * * @author Michiel Rook * @version $Id: IoncubeComment.php 905 2010-10-05 16:28:03Z mrook $ * @package phing.tasks.ext.ioncube * @since 2.2.0 */ class IoncubeComment { private $value = ""; public function getValue() { return $this->value; } public function addText($txt) { $this->value = trim($txt); } }