Skip to content

Commit 645ac63

Browse files
authored
Fixed data type for disconnects model (#65)
* Fixed data type for disconnects model * Updated version
1 parent 321af3d commit 645ac63

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Bandwidth's Iris SDK for PHP",
55
"keywords": ["iris","sdk","php"],
66
"homepage": "http://dev.bandwidth.com",
7-
"reference": "v2.5.1",
7+
"reference": "v2.5.2",
88
"license": "MIT",
99
"authors": [
1010
],

src/DisconnectsModel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function disconnect($id, $tndetail = false) {
4040

4141
/**
4242
* Create new disconnect
43-
* @param type $data
43+
* @param array $data
4444
* @return \Iris\Disconnect
4545
*/
4646
public function create($data, $save = true) {
@@ -84,7 +84,7 @@ class Disconnect extends RestEntry {
8484
/**
8585
* Constructor
8686
* @param type $parent
87-
* @param type $data
87+
* @param array $data
8888
*/
8989
public function __construct($parent, $data)
9090
{

0 commit comments

Comments
 (0)