Completed
Branch master (468f5a)
by Stephen
03:36
created
src/Holidays.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -123,10 +123,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
                     ];
146 146
                 }
147 147
 
148
-                usort($result, function ($a, $b) {
148
+                usort($result, function($a, $b) {
149 149
                     if ($a['date'] == $b['date']) {
150 150
                         return 0;
151 151
                     }
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
             } else {
156 156
                 $result = $response['items'];
157 157
 
158
-                usort($result, function ($a, $b) {
158
+                usort($result, function($a, $b) {
159 159
                     if ($a['start']['date'] == $b['start']['date']) {
160 160
                         return 0;
161 161
                     }
Please login to merge, or discard this patch.