Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit 3bf96ec

Browse files
tjardoogithub-actions[bot]
authored andcommitted
Fix styling
1 parent 749f649 commit 3bf96ec

File tree

7 files changed

+0
-41
lines changed

7 files changed

+0
-41
lines changed

src/ActiveCampaignServiceProvider.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ public function boot(): void
2727

2828
/**
2929
* Get the config path
30-
*
31-
* @return string
3230
*/
3331
protected function getConfigPath(): string
3432
{

src/Factories/ContactFactory.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ class ContactFactory
88
{
99
/**
1010
* @param array<string> $attributes
11-
* @return ActiveCampaignContact
1211
*/
1312
public static function make(array $attributes): ActiveCampaignContact
1413
{

src/Factories/FieldValueFactory.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ class FieldValueFactory
88
{
99
/**
1010
* @param array<string> $attributes
11-
* @return ActiveCampaignFieldValue
1211
*/
1312
public static function make(array $attributes): ActiveCampaignFieldValue
1413
{

src/Factories/TagFactory.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ class TagFactory
88
{
99
/**
1010
* @param array<string> $attributes
11-
* @return ActiveCampaignTag
1211
*/
1312
public static function make(array $attributes): ActiveCampaignTag
1413
{

src/Resources/ActiveCampaignContactsResource.php

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -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

src/Resources/ActiveCampaignFieldValuesResource.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ class ActiveCampaignFieldValuesResource extends ActiveCampaignBaseResource
1111
/**
1212
* Retreive an existing field value by their id.
1313
*
14-
* @param int $id
15-
* @return ActiveCampaignFieldValue
1614
*
1715
* @throws ActiveCampaignException
1816
*/
@@ -30,10 +28,6 @@ public function get(int $id): ActiveCampaignFieldValue
3028
/**
3129
* Create a field value and get the id.
3230
*
33-
* @param int $contactId
34-
* @param string $field
35-
* @param string $value
36-
* @return string
3731
*
3832
* @throws ActiveCampaignException
3933
*/
@@ -58,8 +52,6 @@ public function create(int $contactId, string $field, string $value): string
5852
/**
5953
* Update an existing field value.
6054
*
61-
* @param ActiveCampaignFieldValue $fieldValue
62-
* @return ActiveCampaignFieldValue
6355
*
6456
* @throws ActiveCampaignException
6557
*/
@@ -84,8 +76,6 @@ public function update(ActiveCampaignFieldValue $fieldValue): ActiveCampaignFiel
8476
/**
8577
* Delete an existing field value by their id.
8678
*
87-
* @param int $id
88-
* @return void
8979
*
9080
* @throws ActiveCampaignException
9181
*/

src/Resources/ActiveCampaignTagsResource.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ class ActiveCampaignTagsResource extends ActiveCampaignBaseResource
1212
/**
1313
* Retreive an existing tag by their id.
1414
*
15-
* @param int $id
16-
* @return ActiveCampaignTag
1715
*
1816
* @throws ActiveCampaignException
1917
*/
@@ -50,9 +48,6 @@ public function list(?string $name = ''): Collection
5048
/**
5149
* Create a tag and get the id.
5250
*
53-
* @param string $name
54-
* @param string $description
55-
* @return string
5651
*
5752
* @throws ActiveCampaignException
5853
*/
@@ -77,8 +72,6 @@ public function create(string $name, string $description = ''): string
7772
/**
7873
* Update an existing tag.
7974
*
80-
* @param ActiveCampaignTag $tag
81-
* @return ActiveCampaignTag
8275
*
8376
* @throws ActiveCampaignException
8477
*/
@@ -103,8 +96,6 @@ public function update(ActiveCampaignTag $tag): ActiveCampaignTag
10396
/**
10497
* Delete an existing tag by their id.
10598
*
106-
* @param int $id
107-
* @return void
10899
*
109100
* @throws ActiveCampaignException
110101
*/

0 commit comments

Comments
 (0)