@@ -11,9 +11,6 @@ class ActiveCampaignContactsResource extends ActiveCampaignBaseResource
1111{
1212 /**
1313 * Retreive an existing contact by their id.
14- *
15- * @param int $id
16- * @return ActiveCampaignContact
1714 */
1815 public function get (int $ id ): ActiveCampaignContact
1916 {
@@ -46,9 +43,6 @@ public function list(?string $query = ''): Collection
4643 /**
4744 * Create a contact and get the contact id.
4845 *
49- * @param string $email
50- * @param array $attributes
51- * @return string
5246 *
5347 * @throws ActiveCampaignException
5448 */
@@ -71,8 +65,6 @@ public function create(string $email, array $attributes = []): string
7165 /**
7266 * Update an existing contact.
7367 *
74- * @param ActiveCampaignContact $contact
75- * @return ActiveCampaignContact
7668 *
7769 * @throws ActiveCampaignException
7870 */
@@ -98,8 +90,6 @@ public function update(ActiveCampaignContact $contact): ActiveCampaignContact
9890 /**
9991 * Delete an existing contact by their id.
10092 *
101- * @param int $id
102- * @return void
10393 *
10494 * @throws ActiveCampaignException
10595 */
@@ -116,10 +106,6 @@ public function delete(int $id): void
116106 *
117107 * @see https://developers.activecampaign.com/reference/create-contact-tag
118108 *
119- * @param int $id
120- * @param int $tagId
121- * @return string
122- *
123109 * @throws ActiveCampaignException
124110 */
125111 public function tag (int $ id , int $ tagId ): string
@@ -144,9 +130,6 @@ public function tag(int $id, int $tagId): string
144130 *
145131 * @see https://developers.activecampaign.com/reference#delete-contact-tag
146132 *
147- * @param int $contactTagId
148- * @return void
149- *
150133 * @throws ActiveCampaignException
151134 */
152135 public function untag (int $ contactTagId ): void
0 commit comments