event_model = new Event_Model( $this->wp_object->ID ); } /** * Get the end time from the event object. */ protected function get_start_time(): string { return \gmdate( 'Y-m-d\TH:i:s\Z', \time() ); } /** * Get status of the tribe event * * @return string status of the event */ public function get_status(): ?string { return 'CONFIRMED'; } }