. */ /** * Wrapper for comments for ionCube tasks * * @author Michiel Rook * @version $Id: dbbc1b4830ba43116d5b5e5d20c749598eaf62b7 $ * @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); } }