date = $date; $this->traffic_data = $traffic_data; } /** * The array representation of this domain object. * * @return array */ public function to_array(): array { $result = []; $result['date'] = $this->date; return \array_merge( $result, $this->traffic_data->to_array() ); } }