Completed
Push — master ( ea24b8...e11a9c )
by Gareth
04:07
created
src/API.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
 
179 179
         $names = Utilities\ensureIsArray($names);
180 180
 
181
-        $names = array_map(function ($name) {
181
+        $names = array_map(function($name) {
182 182
             return array(
183 183
                 'DisplayName' => $name,
184 184
                 'FolderClass' => 'IPF.Appointment'
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
         }
204 204
 
205 205
         $names = Utilities\ensureIsArray($names);
206
-        $names = array_map(function ($name) {
206
+        $names = array_map(function($name) {
207 207
             return array(
208 208
                 'DisplayName' => $name,
209 209
                 'FolderClass' => 'IPF.Contact'
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
     public function createFolders($names, Type\FolderIdType $parentFolder, $options = array())
225 225
     {
226 226
         $names = Utilities\ensureIsArray($names);
227
-        $names = array_map(function ($name) {
227
+        $names = array_map(function($name) {
228 228
             return ['DisplayName' => $name];
229 229
         }, $names);
230 230
 
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
     {
260 260
         $folders = Utilities\ensureIsArray($folders);
261 261
 
262
-        $folderIds = array_map(function ($folderId) {
262
+        $folderIds = array_map(function($folderId) {
263 263
             return $folderId->toArray();
264 264
         }, $folders);
265 265
 
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
     {
296 296
         $items = Utilities\ensureIsArray($items);
297 297
 
298
-        $items = array_map(function ($item) {
298
+        $items = array_map(function($item) {
299 299
             $item = Type\ItemIdType::buildFromArray($item);
300 300
 
301 301
             return $item->toArray();
Please login to merge, or discard this patch.