GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Test Failed
Push — master ( d9a634...e591c7 )
by Juan Jose
07:17 queued 16s
created
examples/Notes/GetAddressNotes.php 2 patches
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -26,13 +26,13 @@  discard block
 block discarded – undo
26 26
 
27 27
 // Add an address note
28 28
 $noteParameters = [
29
-    'route_id'          => $route_id,
30
-    'address_id'        => $route_destination_id,
31
-    'dev_lat'           => $addressRand['lat'],
32
-    'dev_lng'           => $addressRand['lng'],
33
-    'device_type'       => 'web',
34
-    'strUpdateType'     => 'dropoff',
35
-    'strNoteContents'   => 'Test '.time(),
29
+	'route_id'          => $route_id,
30
+	'address_id'        => $route_destination_id,
31
+	'dev_lat'           => $addressRand['lat'],
32
+	'dev_lng'           => $addressRand['lng'],
33
+	'device_type'       => 'web',
34
+	'strUpdateType'     => 'dropoff',
35
+	'strNoteContents'   => 'Test '.time(),
36 36
 ];
37 37
 
38 38
 $addressNote = new AddressNote();
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
 
44 44
 // Get address notes
45 45
 $noteParameters = [
46
-    'route_id'              => $route_id,
47
-    'route_destination_id'  => $route_destination_id,
46
+	'route_id'              => $route_id,
47
+	'route_destination_id'  => $route_destination_id,
48 48
 ];
49 49
 
50 50
 $addressNote = new AddressNote();
@@ -54,10 +54,10 @@  discard block
 block discarded – undo
54 54
 echo 'Destination note count --> '.$notes['destination_note_count'].'<br>';
55 55
 
56 56
 foreach ($notes['notes'] as $note) {
57
-    echo '========== Notes ==================<br>';
58
-    echo 'note_id --> '.$note['note_id'].'<br>';
59
-    $content = isset($note['contents']) ? $note['contents'] : '';
60
-    if (strlen($content) > 0) {
61
-        echo "contents --> $content".'<br>';
62
-    }
57
+	echo '========== Notes ==================<br>';
58
+	echo 'note_id --> '.$note['note_id'].'<br>';
59
+	$content = isset($note['contents']) ? $note['contents'] : '';
60
+	if (strlen($content) > 0) {
61
+		echo "contents --> $content".'<br>';
62
+	}
63 63
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 assert(!is_null($route_id), "Cannot retrieve random route_id");
20 20
 
21 21
 // Get random address's id from selected route above
22
-$addressRand = (array) $route->GetRandomAddressFromRoute($route_id);
22
+$addressRand = (array)$route->GetRandomAddressFromRoute($route_id);
23 23
 $route_destination_id = $addressRand['route_destination_id'];
24 24
 
25 25
 assert(!is_null($route_destination_id), "Cannot retrieve random address");
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     echo '========== Notes ==================<br>';
58 58
     echo 'note_id --> '.$note['note_id'].'<br>';
59 59
     $content = isset($note['contents']) ? $note['contents'] : '';
60
-    if (strlen($content) > 0) {
60
+    if (strlen($content)>0) {
61 61
         echo "contents --> $content".'<br>';
62 62
     }
63 63
 }
Please login to merge, or discard this patch.
examples/Notes/AddCustomNoteToRoute.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -25,15 +25,15 @@
 block discarded – undo
25 25
 
26 26
 // Add a custom note to a route
27 27
 $noteParameters = [
28
-    'route_id'              => $routeId,
29
-    'address_id'            => $route_destination_id,
30
-    'format'                => 'json',
31
-    'dev_lat'               => $addressRand['lat'],
32
-    'dev_lng'               => $addressRand['lng'],
33
-    'custom_note_type[11]'  => 'slippery',
34
-    'custom_note_type[10]'  => 'Backdoor',
35
-    'strUpdateType'         => 'dropoff',
36
-    'strNoteContents'       => 'test1111',
28
+	'route_id'              => $routeId,
29
+	'address_id'            => $route_destination_id,
30
+	'format'                => 'json',
31
+	'dev_lat'               => $addressRand['lat'],
32
+	'dev_lng'               => $addressRand['lng'],
33
+	'custom_note_type[11]'  => 'slippery',
34
+	'custom_note_type[10]'  => 'Backdoor',
35
+	'strUpdateType'         => 'dropoff',
36
+	'strNoteContents'       => 'test1111',
37 37
 ];
38 38
 
39 39
 $addressNote = new AddressNote();
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 assert(!is_null($routeId), "Cannot retrieve random route_id");
19 19
 
20 20
 // Get random address's id from the above selected route
21
-$addressRand = (array) $route->GetRandomAddressFromRoute($routeId);
21
+$addressRand = (array)$route->GetRandomAddressFromRoute($routeId);
22 22
 $route_destination_id = $addressRand['route_destination_id'];
23 23
 
24 24
 assert(!is_null($route_destination_id), "Cannot retrieve random address");
Please login to merge, or discard this patch.
examples/Notes/FIleNoteUploading.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -25,13 +25,13 @@
 block discarded – undo
25 25
 
26 26
 // Add a file note
27 27
 $noteParameters = [
28
-    'strFilename'   => 'notes.csv',
29
-    'route_id'      => $route_id,
30
-    'address_id'    => $route_destination_id,
31
-    'dev_lat'       => $addressRand['lat'],
32
-    'dev_lng'       => $addressRand['lng'],
33
-    'device_type'   => 'web',
34
-    'strUpdateType' => 'ANY_FILE',
28
+	'strFilename'   => 'notes.csv',
29
+	'route_id'      => $route_id,
30
+	'address_id'    => $route_destination_id,
31
+	'dev_lat'       => $addressRand['lat'],
32
+	'dev_lng'       => $addressRand['lng'],
33
+	'device_type'   => 'web',
34
+	'strUpdateType' => 'ANY_FILE',
35 35
 ];
36 36
 
37 37
 $addressNote = new AddressNote();
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 assert(!is_null($route_id), "Cannot retrieve random route_id");
19 19
 
20 20
 // Get random address's id from selected route above
21
-$addressRand = (array) $route->GetRandomAddressFromRoute($route_id);
21
+$addressRand = (array)$route->GetRandomAddressFromRoute($route_id);
22 22
 $route_destination_id = $addressRand['route_destination_id'];
23 23
 
24 24
 assert(!is_null($route_destination_id), "Cannot retrieve random address");
Please login to merge, or discard this patch.
examples/Notes/AddCustomNoteType.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -10,12 +10,12 @@
 block discarded – undo
10 10
 
11 11
 // Create a custom note type
12 12
 $noteParameters = [
13
-    'type'   => 'To Do',
14
-    'values' => [
15
-                  'Pass a package',
16
-                  'Pickup package',
17
-                  'Do a service',
18
-                ],
13
+	'type'   => 'To Do',
14
+	'values' => [
15
+				  'Pass a package',
16
+				  'Pickup package',
17
+				  'Do a service',
18
+				],
19 19
 ];
20 20
 
21 21
 $addressNote = new AddressNote();
Please login to merge, or discard this patch.
examples/Notes/AddAddressNote.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -25,13 +25,13 @@
 block discarded – undo
25 25
 
26 26
 // Add an address note
27 27
 $noteParameters = [
28
-    'route_id'          => $route_id,
29
-    'address_id'        => $route_destination_id,
30
-    'dev_lat'           => $addressRand['lat'],
31
-    'dev_lng'           => $addressRand['lng'],
32
-    'device_type'       => 'web',
33
-    'strUpdateType'     => 'dropoff',
34
-    'strNoteContents'   => 'Test',
28
+	'route_id'          => $route_id,
29
+	'address_id'        => $route_destination_id,
30
+	'dev_lat'           => $addressRand['lat'],
31
+	'dev_lng'           => $addressRand['lng'],
32
+	'device_type'       => 'web',
33
+	'strUpdateType'     => 'dropoff',
34
+	'strNoteContents'   => 'Test',
35 35
 ];
36 36
 
37 37
 $addressNote = new AddressNote();
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 assert(!is_null($route_id), "Cannot retrieve random route_id");
19 19
 
20 20
 // Get random address's id from selected route above
21
-$addressRand = (array) $route->GetRandomAddressFromRoute($route_id);
21
+$addressRand = (array)$route->GetRandomAddressFromRoute($route_id);
22 22
 $route_destination_id = $addressRand['route_destination_id'];
23 23
 
24 24
 assert(!is_null($route_destination_id), "Cannot retrieve random address");
@@ -41,4 +41,4 @@  discard block
 block discarded – undo
41 41
 
42 42
 $address1 = $addressNote->AddAddressNote($noteParameters);
43 43
 
44
-Route4Me::simplePrint((array) $address1, true);
44
+Route4Me::simplePrint((array)$address1, true);
Please login to merge, or discard this patch.
examples/GetAddressBookLocationsByIDs.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@  discard block
 block discarded – undo
11 11
 // Get two random locations IDs
12 12
 
13 13
 $addressBookLocationParameters = [
14
-    'limit'     => 30,
15
-    'offset'    => 0,
14
+	'limit'     => 30,
15
+	'offset'    => 0,
16 16
 ];
17 17
 
18 18
 $abContacts = new AddressBookLocation();
@@ -36,6 +36,6 @@  discard block
 block discarded – undo
36 36
 $results = $abLocation->getValue($abcResult, 'results');
37 37
 
38 38
 foreach ($results as $result) {
39
-    Route4Me::simplePrint($result);
40
-    echo '<br>';
39
+	Route4Me::simplePrint($result);
40
+	echo '<br>';
41 41
 }
Please login to merge, or discard this patch.
examples/AddressBookLocationSearch.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@
 block discarded – undo
13 13
 $abLocation = new AddressBookLocation();
14 14
 
15 15
 $params = [
16
-    'query'     => 'Test',
17
-    'fields'    => 'address_1,address_group,first_name,last_name',
18
-    'offset'    => 0,
19
-    'limit'     => 20,
16
+	'query'     => 'Test',
17
+	'fields'    => 'address_1,address_group,first_name,last_name',
18
+	'offset'    => 0,
19
+	'limit'     => 20,
20 20
 ];
21 21
 
22 22
 $abcResult = $abLocation->searchAddressBookLocations($params);
Please login to merge, or discard this patch.
examples/AddressBook/GetAddressBookLocation.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@
 block discarded – undo
12 12
 
13 13
 // Get reandom address book location
14 14
 $AddressBookLocationParameters = [
15
-        'limit'     => 30,
16
-        'offset'    => 0,
15
+		'limit'     => 30,
16
+		'offset'    => 0,
17 17
 ];
18 18
 
19 19
 $randomLocation = $abLocation->getRandomAddressBookLocation($AddressBookLocationParameters);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 
19 19
 $randomLocation = $abLocation->getRandomAddressBookLocation($AddressBookLocationParameters);
20 20
 
21
-if (assert(null != $randomLocation, 'Cannot get a randoma address book location'));
21
+if (assert(null!=$randomLocation, 'Cannot get a randoma address book location'));
22 22
 
23 23
 // Get the address book location by address_id
24 24
 $addressID = $randomLocation['address_id'];
Please login to merge, or discard this patch.
examples/AddressBook/AddScheduledAddressBookLocation.php 1 patch
Indentation   +119 added lines, -119 removed lines patch added patch discarded remove patch
@@ -10,24 +10,24 @@  discard block
 block discarded – undo
10 10
 
11 11
 //region // Add a location, scheduled daily with custom data.
12 12
 $AddressBookLocationParameters = AddressBookLocation::fromArray([
13
-    'address_1'             => '1604 PARKRIDGE PKWY, Louisville, KY, 40214',
14
-    'address_alias'         => '1604 PARKRIDGE PKWY 40214',
15
-    'address_group'         => 'Scheduled daily',
16
-    'first_name'            => 'Peter',
17
-    'last_name'             => 'Newman',
18
-    'address_email'         => '[email protected]',
19
-    'address_phone_number'  => '65432178',
20
-    'cached_lat'            => 38.141598,
21
-    'cached_lng'            => -85.793846,
22
-    'address_city'          => 'Louisville',
23
-    'address_custom_data'   => ['scheduled' => 'yes',
24
-                                    'serice type' => 'publishing', ],
25
-    'schedule' => [[
26
-        'enabled'   => true,
27
-        'mode'      => 'daily',
28
-        'daily'     => ['every' => 1],
29
-    ]],
30
-    'service_time' => 900,
13
+	'address_1'             => '1604 PARKRIDGE PKWY, Louisville, KY, 40214',
14
+	'address_alias'         => '1604 PARKRIDGE PKWY 40214',
15
+	'address_group'         => 'Scheduled daily',
16
+	'first_name'            => 'Peter',
17
+	'last_name'             => 'Newman',
18
+	'address_email'         => '[email protected]',
19
+	'address_phone_number'  => '65432178',
20
+	'cached_lat'            => 38.141598,
21
+	'cached_lng'            => -85.793846,
22
+	'address_city'          => 'Louisville',
23
+	'address_custom_data'   => ['scheduled' => 'yes',
24
+									'serice type' => 'publishing', ],
25
+	'schedule' => [[
26
+		'enabled'   => true,
27
+		'mode'      => 'daily',
28
+		'daily'     => ['every' => 1],
29
+	]],
30
+	'service_time' => 900,
31 31
 ]);
32 32
 
33 33
 $abContacts1 = new AddressBookLocation();
@@ -42,27 +42,27 @@  discard block
 block discarded – undo
42 42
 
43 43
 //region // Add a location, scheduled weekly.
44 44
 $AddressBookLocationParameters = AddressBookLocation::fromArray([
45
-    'address_1'             => '1407 MCCOY, Louisville, KY, 40215',
46
-    'address_alias'         => '1407 MCCOY 40215',
47
-    'address_group'         => 'Scheduled weekly',
48
-    'first_name'            => 'Bart',
49
-    'last_name'             => 'Douglas',
50
-    'address_email'         => '[email protected]',
51
-    'address_phone_number'  => '95487454',
52
-    'cached_lat'            => 38.202496,
53
-    'cached_lng'            => -85.786514,
54
-    'curbside_lat'          => 38.202496,
55
-    'curbside_lng'          => -85.786514,
56
-    'address_city'          => 'Louisville',
57
-    'schedule'              => [[
58
-        'enabled'   => true,
59
-        'mode'      => 'weekly',
60
-        'weekly'    => [
61
-            'every'     => 1,
62
-            'weekdays'  => [1, 2, 3, 4, 5],
63
-        ],
64
-    ]],
65
-    'service_time' => 600,
45
+	'address_1'             => '1407 MCCOY, Louisville, KY, 40215',
46
+	'address_alias'         => '1407 MCCOY 40215',
47
+	'address_group'         => 'Scheduled weekly',
48
+	'first_name'            => 'Bart',
49
+	'last_name'             => 'Douglas',
50
+	'address_email'         => '[email protected]',
51
+	'address_phone_number'  => '95487454',
52
+	'cached_lat'            => 38.202496,
53
+	'cached_lng'            => -85.786514,
54
+	'curbside_lat'          => 38.202496,
55
+	'curbside_lng'          => -85.786514,
56
+	'address_city'          => 'Louisville',
57
+	'schedule'              => [[
58
+		'enabled'   => true,
59
+		'mode'      => 'weekly',
60
+		'weekly'    => [
61
+			'every'     => 1,
62
+			'weekdays'  => [1, 2, 3, 4, 5],
63
+		],
64
+	]],
65
+	'service_time' => 600,
66 66
 ]);
67 67
 
68 68
 $abContacts2 = new AddressBookLocation();
@@ -77,33 +77,33 @@  discard block
 block discarded – undo
77 77
 
78 78
 //region // Add a location, scheduled monthly (dates mode).
79 79
 $AddressBookLocationParameters = AddressBookLocation::fromArray([
80
-    'address_1'             => '4805 BELLEVUE AVE, Louisville, KY, 40215',
81
-    'address_2'             => '4806 BELLEVUE AVE, Louisville, KY, 40215',
82
-    'address_alias'         => '4805 BELLEVUE AVE 40215',
83
-    'address_group'         => 'Scheduled monthly',
84
-    'first_name'            => 'Bart',
85
-    'last_name'             => 'Douglas',
86
-    'address_email'         => '[email protected]',
87
-    'address_phone_number'  => '95487454',
88
-    'cached_lat'            => 38.178844,
89
-    'cached_lng'            => -85.774864,
90
-    'curbside_lat'          => 38.178844,
91
-    'curbside_lng'          => -85.774864,
92
-    'address_city'          => 'Louisville',
93
-    'address_country_id'    => 'US',
94
-    'address_state_id'      => 'KY',
95
-    'address_zip'           => '40215',
96
-    'schedule'              => [[
97
-        'enabled'   => true,
98
-        'mode'      => 'monthly',
99
-        'monthly'   => [
100
-            'every'     => 1,
101
-            'mode'      => 'dates',
102
-            'dates'     => [20, 22, 23, 24, 25],
103
-        ],
104
-    ]],
105
-    'service_time' => 750,
106
-    'color' => 'red',
80
+	'address_1'             => '4805 BELLEVUE AVE, Louisville, KY, 40215',
81
+	'address_2'             => '4806 BELLEVUE AVE, Louisville, KY, 40215',
82
+	'address_alias'         => '4805 BELLEVUE AVE 40215',
83
+	'address_group'         => 'Scheduled monthly',
84
+	'first_name'            => 'Bart',
85
+	'last_name'             => 'Douglas',
86
+	'address_email'         => '[email protected]',
87
+	'address_phone_number'  => '95487454',
88
+	'cached_lat'            => 38.178844,
89
+	'cached_lng'            => -85.774864,
90
+	'curbside_lat'          => 38.178844,
91
+	'curbside_lng'          => -85.774864,
92
+	'address_city'          => 'Louisville',
93
+	'address_country_id'    => 'US',
94
+	'address_state_id'      => 'KY',
95
+	'address_zip'           => '40215',
96
+	'schedule'              => [[
97
+		'enabled'   => true,
98
+		'mode'      => 'monthly',
99
+		'monthly'   => [
100
+			'every'     => 1,
101
+			'mode'      => 'dates',
102
+			'dates'     => [20, 22, 23, 24, 25],
103
+		],
104
+	]],
105
+	'service_time' => 750,
106
+	'color' => 'red',
107 107
 ]);
108 108
 
109 109
 $abContacts3 = new AddressBookLocation();
@@ -118,36 +118,36 @@  discard block
 block discarded – undo
118 118
 
119 119
 //region // AAdd a location, scheduled monthly (nth mode).
120 120
 $AddressBookLocationParameters = AddressBookLocation::fromArray([
121
-    'address_1'             => '730 CECIL AVENUE, Louisville, KY, 40211',
122
-    'address_alias'         => '730 CECIL AVENUE 40211',
123
-    'address_group'         => 'Scheduled monthly',
124
-    'first_name'            => 'David',
125
-    'last_name'             => 'Silvester',
126
-    'address_email'         => '[email protected]',
127
-    'address_phone_number'  => '36985214',
128
-    'cached_lat'            => 38.248684,
129
-    'cached_lng'            => -85.821121,
130
-    'curbside_lat'          => 38.248684,
131
-    'curbside_lng'          => -85.821121,
132
-    'address_city'          => 'Louisville',
133
-    'address_custom_data'   => [
134
-        'scheduled'     => 'yes',
135
-        'service type'  => 'library',
136
-    ],
137
-    'schedule' => [[
138
-        'enabled'   => true,
139
-        'mode'      => 'monthly',
140
-        'monthly'   => [
141
-            'every' => 1,
142
-            'mode'  => 'nth',
143
-            'nth'   => [
144
-                'n'     => 1,
145
-                'what'  => 4,
146
-            ],
147
-        ],
148
-    ]],
149
-    'service_time' => 450,
150
-    'address_icon' => 'emoji/emoji-bus',
121
+	'address_1'             => '730 CECIL AVENUE, Louisville, KY, 40211',
122
+	'address_alias'         => '730 CECIL AVENUE 40211',
123
+	'address_group'         => 'Scheduled monthly',
124
+	'first_name'            => 'David',
125
+	'last_name'             => 'Silvester',
126
+	'address_email'         => '[email protected]',
127
+	'address_phone_number'  => '36985214',
128
+	'cached_lat'            => 38.248684,
129
+	'cached_lng'            => -85.821121,
130
+	'curbside_lat'          => 38.248684,
131
+	'curbside_lng'          => -85.821121,
132
+	'address_city'          => 'Louisville',
133
+	'address_custom_data'   => [
134
+		'scheduled'     => 'yes',
135
+		'service type'  => 'library',
136
+	],
137
+	'schedule' => [[
138
+		'enabled'   => true,
139
+		'mode'      => 'monthly',
140
+		'monthly'   => [
141
+			'every' => 1,
142
+			'mode'  => 'nth',
143
+			'nth'   => [
144
+				'n'     => 1,
145
+				'what'  => 4,
146
+			],
147
+		],
148
+	]],
149
+	'service_time' => 450,
150
+	'address_icon' => 'emoji/emoji-bus',
151 151
 ]);
152 152
 
153 153
 $abContacts4 = new AddressBookLocation();
@@ -162,29 +162,29 @@  discard block
 block discarded – undo
162 162
 
163 163
 //region // Add a location with the daily scheduling and blacklist.
164 164
 $AddressBookLocationParameters = AddressBookLocation::fromArray([
165
-    'address_1'             => '4629 HILLSIDE DRIVE, Louisville, KY, 40216',
166
-    'address_alias'         => '4629 HILLSIDE DRIVE 40216',
167
-    'address_group'         => 'Scheduled daily',
168
-    'first_name'            => 'Kim',
169
-    'last_name'             => 'Shandor',
170
-    'address_email'         => '[email protected]',
171
-    'address_phone_number'  => '9874152',
172
-    'cached_lat'            => 38.176067,
173
-    'cached_lng'            => -85.824638,
174
-    'curbside_lat'          => 38.176067,
175
-    'curbside_lng'          => -85.824638,
176
-    'address_city'          => 'Louisville',
177
-    'address_custom_data'   => [
178
-        'scheduled'     => 'yes',
179
-        'serice type'   => 'appliance',
180
-    ],
181
-    'schedule'              => [
182
-        'enabled'   => true,
183
-        'mode'      => 'daily',
184
-        'daily'     => ['every' => 1],
185
-    ],
186
-    'schedule_blacklist'    => ['2017-02-24', '2017-02-25'],
187
-    'service_time'          => 300,
165
+	'address_1'             => '4629 HILLSIDE DRIVE, Louisville, KY, 40216',
166
+	'address_alias'         => '4629 HILLSIDE DRIVE 40216',
167
+	'address_group'         => 'Scheduled daily',
168
+	'first_name'            => 'Kim',
169
+	'last_name'             => 'Shandor',
170
+	'address_email'         => '[email protected]',
171
+	'address_phone_number'  => '9874152',
172
+	'cached_lat'            => 38.176067,
173
+	'cached_lng'            => -85.824638,
174
+	'curbside_lat'          => 38.176067,
175
+	'curbside_lng'          => -85.824638,
176
+	'address_city'          => 'Louisville',
177
+	'address_custom_data'   => [
178
+		'scheduled'     => 'yes',
179
+		'serice type'   => 'appliance',
180
+	],
181
+	'schedule'              => [
182
+		'enabled'   => true,
183
+		'mode'      => 'daily',
184
+		'daily'     => ['every' => 1],
185
+	],
186
+	'schedule_blacklist'    => ['2017-02-24', '2017-02-25'],
187
+	'service_time'          => 300,
188 188
 ]);
189 189
 
190 190
 $abContacts5 = new AddressBookLocation();
Please login to merge, or discard this patch.