Skip to content

Commit

Permalink
conflict resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
saksham-plivo committed Oct 19, 2023
2 parents 9c955ba + 4f10a36 commit 14b44de
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
**Feature - Verify Caller Id API support**
-API support for verifying, updating, getting and deleting caller IDs.

## [4.57.1](https://github.com/plivo/plivo-php/tree/v4.57.1) (2023-10-18)
**Bug fix - Dial XML element**
- Fixed constructor method signature for Dial XML element

## [4.57.0](https://github.com/plivo/plivo-php/tree/v4.57.0) (2023-09-13)
**Feature - Number Masking**
- Added Create, Delete, Update, Get and List Masking Session API
Expand Down
2 changes: 1 addition & 1 deletion src/Plivo/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Version
/**
* @const int PHP helper library patch number
*/
const PATCH = 0;
const PATCH = 1;
/**
* @return string
*/
Expand Down
4 changes: 2 additions & 2 deletions src/Plivo/XML/Element.php
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,8 @@ function addPlay($body = null, $attributes = []) {
* @param array $attributes
* @return mixed
*/
function addDial($body = null, $attributes = []) {
return $this->add(new Dial($body, $attributes));
function addDial($attributes = []) {
return $this->add(new Dial($attributes));
}

/**
Expand Down

0 comments on commit 14b44de

Please sign in to comment.