setResult($result); } /** * Set the result/return value * * @param mixed $value * @return PostEvent */ public function setResult(& $value) { $this->result = & $value; return $this; } /** * Get the result/return value * * @return mixed */ public function & getResult() { return $this->result; } }