From ae00a4585e0561e5a210ac698322c04a8b194dca Mon Sep 17 00:00:00 2001 From: David Wolf <68775926+devidw@users.noreply.github.com> Date: Sat, 1 Jan 2022 15:37:48 +0100 Subject: [PATCH] Add `php` language to code blocks in `README.md` --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0553973..927c6cd 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ composer require mediatoolkit/activecampaign-v3-php ## Basic usage: #### Create a client: -``` +```php $client = new Client( $api_url, $api_token, @@ -20,12 +20,12 @@ $client = new Client( ``` #### Select Contacts endpoint: -``` +```php $contacts = new Contacts($client); ``` #### Create new contact: -``` +```php $contact = $contacts->create([ 'email' => 'CONTACT_EMAIL', 'firstName' => 'CONTACT_FIRST_NAME',