amount = $amount; $this->donorPubkey = $donorPubkey; $this->date = new DateTime(); $this->date->setTimestamp($time); $this->comment = $comment; } public function getAmount () { return $this->amount; } public function setAmount ($amount) { $this->amount = $amount; } public function getDate () { return $this->date; } public function getComment () { return $this->comment; } public function getDonorPubkey () { return $this->donorPubkey; } }