gp_event = new GatherPress_Event( $this->wp_object->ID ); $this->gp_venue = $this->gp_event->get_venue_information(); } /** * Get the end time from the event object. */ protected function get_end_time(): ?string { return $this->gp_event->get_datetime_end( 'Y-m-d\TH:i:s\Z' ); } /** * Get the end time from the event object. */ protected function get_start_time(): string { return $this->gp_event->get_datetime_start( 'Y-m-d\TH:i:s\Z' ); } }