name = $v; } /** * Sets the value for the constant. * @param string $v */ public function setValue($v) { $this->value = $v; } public function main() { if (!isset($this->name) || !isset($this->value)) { throw new BuildException("Both name and value params are required.", $this->getLocation()); } $const = strtoupper($this->name); if (defined($const)) { $this->log("The constant $const has already been defined!", Project::MSG_ERR); } else { define($const, $this->value); $this->log("Defined $const with value " . var_export($this->value, true), Project::MSG_INFO); } } }