Skip to content

Commit 4cdba33

Browse files
Fix typo in README.md (#781)
1 parent 10dbd6e commit 4cdba33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ try {
269269
$client = new Twilio\Rest\Client($sid, $token);
270270
} catch (ConfigurationException $e) {
271271
// You can `catch` the exception, and perform any recovery method of your choice
272-
print $e . getCode();
272+
print $e->getCode();
273273
}
274274

275275
$call = $client->account->calls
@@ -306,7 +306,7 @@ try {
306306
$token
307307
);
308308
} catch (EnvironmentException $e) {
309-
print $e . getCode();
309+
print $e->getCode();
310310
}
311311

312312
print $call->to;

0 commit comments

Comments
 (0)