rapidwebltd / php-google-contacts-v3-api

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

Delete all contacts #54

Closed ludobesse closed 6 years ago

ludobesse commented 6 years ago

Hello and thank you for your project, Would it be possible to implement the delete function for all contacts? That would be very helpful. Thank you very much.

DivineOmega commented 6 years ago

You should be able to delete all contacts with something similar to the following.


$contacts = ContactFactory::getAll();
foreach($contacts as $contact) {
  ContactFactory::delete($contact);
}