Skip to content

Commit

Permalink
Fix additional missing string
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangreenberg authored Dec 5, 2018
1 parent b0e63df commit 87b4e2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Card.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public static function retrieve($_id, $_opts = null)
{
$msg = "Cards cannot be accessed without a customer, recipient or account ID. " .
"Retrieve a card using \$customer->sources->retrieve('card_id'), " .
"\$recipient->cards->retrieve('card_id'), or";
"\$recipient->cards->retrieve('card_id'), or " .
"\$account->external_accounts->retrieve('card_id') instead.";
throw new Error\InvalidRequest($msg, null);
}
Expand Down

0 comments on commit 87b4e2e

Please sign in to comment.