@@ -123,10 +123,10 @@ discard block |
||
123 | 123 | $result = []; |
124 | 124 | |
125 | 125 | $api_url = "https://content.googleapis.com/calendar/v3/calendars/en.{$this->country_code}%23holiday%40group.v.calendar.google.com/events". |
126 | - '?singleEvents=false'. |
|
127 | - "&timeMax={$this->end_date}". |
|
128 | - "&timeMin={$this->start_date}". |
|
129 | - "&key={$this->api_key}"; |
|
126 | + '?singleEvents=false'. |
|
127 | + "&timeMax={$this->end_date}". |
|
128 | + "&timeMin={$this->start_date}". |
|
129 | + "&key={$this->api_key}"; |
|
130 | 130 | |
131 | 131 | $response = json_decode(file_get_contents($api_url), true); |
132 | 132 | |
@@ -140,8 +140,8 @@ discard block |
||
140 | 140 | } elseif ($this->minimal === true) { |
141 | 141 | foreach ($response['items'] as $holiday) { |
142 | 142 | $result[] = [ |
143 | - 'name' => $holiday['summary'], |
|
144 | - 'date' => $holiday['start']['date'], |
|
143 | + 'name' => $holiday['summary'], |
|
144 | + 'date' => $holiday['start']['date'], |
|
145 | 145 | ]; |
146 | 146 | } |
147 | 147 |