Skip to content

Commit

Permalink
UPT: typo in README
Browse files Browse the repository at this point in the history
  • Loading branch information
yamdraco committed Jun 14, 2018
1 parent 555cca2 commit 4213bba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ composer require lalamove/php:1.0.2
The following the code we need to make quotation for SG
```
$body = array(
"scheduleAt" => gmdate('Y-m-d\TH:i:s\Z', time() + 60 * 30) // ISOString with the format YYYY-MM-ddTHH:mm:ss.000Z at UTC time
"scheduleAt" => gmdate('Y-m-d\TH:i:s\Z', time() + 60 * 30), // ISOString with the format YYYY-MM-ddTHH:mm:ss.000Z at UTC time
"serviceType" => "MOTORCYCLE", // string to pick the available service type
"specialRequests" => array(), // array of strings available for the service type
"requesterContact" => array(
Expand Down Expand Up @@ -74,7 +74,7 @@ Sample Response
The Response from the quotation is needed for Place order API to lock the price
```
$body = array(
"scheduleAt" => gmdate('Y-m-d\TH:i:s\Z', time() + 60 * 30) // ISOString with the format YYYY-MM-ddTHH:mm:ss.000Z at UTC time
"scheduleAt" => gmdate('Y-m-d\TH:i:s\Z', time() + 60 * 30), // ISOString with the format YYYY-MM-ddTHH:mm:ss.000Z at UTC time
"serviceType" => "MOTORCYCLE", // string to pick the available service type
"specialRequests" => array(), // array of strings available for the service type
"requesterContact" => array(
Expand Down

0 comments on commit 4213bba

Please sign in to comment.