Skip to content

Commit fdf31d6

Browse files
author
Marcel Corso
committed
php doesn't have 'hashes'. Replace for 'associative array'.
1 parent e950250 commit fdf31d6

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/MessageBird/Objects/Lookup.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ class Lookup extends Base
5656
protected $type;
5757

5858
/**
59-
* A hash containing references to this phone number in several different formats.
59+
* An associative array containing references to this phone number in several different formats.
6060
*
61-
* @var hash
61+
* @var array
6262
*
6363
* e164: The phone number in E.164 format.
6464
* international: The phone number in international format.
@@ -68,9 +68,9 @@ class Lookup extends Base
6868
protected $formats;
6969

7070
/**
71-
* The most recent HLR object. If no such HLR objects exists, this hash won't be returned.
71+
* The most recent HLR object. If no such HLR objects exists, this array won't be returned.
7272
*
73-
* @var hash
73+
* @var array
7474
*
7575
* id(string): An unique random ID which is created on the MessageBird platform.
7676
* network(int): The MCCMNC code of the network provider.

src/MessageBird/Objects/Message.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class Message extends Base
8989
public $gateway;
9090

9191
/**
92-
* A hash with extra information. Is only used when a binary or premium
92+
* An associative array with extra information. Is only used when a binary or premium
9393
* message is sent.
9494
*
9595
* @var array

src/MessageBird/Objects/Verify.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class Verify extends Base
4646
public $reference;
4747

4848
/**
49-
* A hash containing one href entry referring to the URL of the created object.
49+
* An associative array containing one href entry referring to the URL of the created object.
5050
* The entry can either refer to either the messages or the voicemessages endpoint
5151
*
5252
* @var object

0 commit comments

Comments
 (0)