time = $time; $this->source = $source; $this->contents = $contents; // deep copy } /** * Get log source * * @return string log source */ public function getSource() { return $this->source; } /** * Get log time * * @return integer log time */ public function getTime() { return $this->time; } /** * Get log contents, content many key/value pair. * * @return array log contents */ public function getContents() { return $this->contents; } }