subject = $subject; $this->predicate = $predicate; $this->object = $object; $this->object_type = $object_type; $this->object_properties = $object_properties; } public function get_subject(){ return $this->subject; } public function get_predicate(){ return $this->predicate; } public function get_object(){ return $this->object; } public function get_object_type(){ return $this->object_type; } public function get_object_properties(){ return $this->object_properties; } public function offset_get_object_property($offset){ if (isset($this->object_properties[$offset])) { return $this->object_properties[$offset]; } return null; } } // end of onto_assertion