Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
siewmai authored Jan 30, 2018
1 parent 932386a commit 64cc4e2
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 @@ -112,7 +112,7 @@ $response = $request->send();
if ($response->isSuccessful()) {
// Update your data model
} else {
echo($response->getMessage());
echo $response->getMessage();
}
```

Expand Down Expand Up @@ -144,7 +144,7 @@ $response = $request->send();
if ($response->isSuccessful() || $response->isPending() ) {
// Update your data model
} else {
echo($response->getMessage());
echo $response->getMessage();
}
```

Expand Down

0 comments on commit 64cc4e2

Please sign in to comment.