rapidwebltd / php-google-contacts-v3-api

👥 PHP library for the Google Contacts API (v3)
MIT License
102 stars 64 forks source link

Overlap contacts of the same type #22

Closed lucascdsilva closed 8 years ago

lucascdsilva commented 8 years ago

So I understand the code, does not allow pulling contacts with the same type, since it uses the contact type as array key.

Ex:

Type Number
cell 99999999
cell 88888888
   //result only 
   array('cell' => 88888888);
DivineOmega commented 8 years ago

Good spot!

DivineOmega commented 8 years ago

Fixed by PR #23.