Skip to content

Commit

Permalink
On (no branch): issue_73_edits
Browse files Browse the repository at this point in the history
  • Loading branch information
vidhanbhonsle committed Nov 21, 2022
1 parent 9fc3895 commit 8fba188
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.0
2.7.1
4 changes: 2 additions & 2 deletions lib/ApiRequestor.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ private static function _encodeObjects($d)
if ($d instanceof ApiResource) {
return Util\Util::utf8($d->id);
} elseif ($d === true) {
return 'true';
return true;
} elseif ($d === false) {
return 'false';
return false;
} elseif (is_array($d)) {
$res = [];
foreach ($d as $k => $v) {
Expand Down
2 changes: 1 addition & 1 deletion lib/Telnyx.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class Telnyx
// @var float Initial delay between retries, in seconds
private static $initialNetworkRetryDelay = 0.5;

const VERSION = '2.7.0';
const VERSION = '2.7.1';

/**
* @return string The API key used for requests.
Expand Down

0 comments on commit 8fba188

Please sign in to comment.