Skip to content

Commit

Permalink
Fix typo in README.md (#781)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedghanem00 authored Jul 16, 2024
1 parent 10dbd6e commit 4cdba33
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 @@ -269,7 +269,7 @@ try {
$client = new Twilio\Rest\Client($sid, $token);
} catch (ConfigurationException $e) {
// You can `catch` the exception, and perform any recovery method of your choice
print $e . getCode();
print $e->getCode();
}

$call = $client->account->calls
Expand Down Expand Up @@ -306,7 +306,7 @@ try {
$token
);
} catch (EnvironmentException $e) {
print $e . getCode();
print $e->getCode();
}

print $call->to;
Expand Down

0 comments on commit 4cdba33

Please sign in to comment.