Skip to content

Commit 04b14e3

Browse files
authored
Merge pull request #236 from Spriz/feature/morePsr2Fixes
Updated with more PSR2 fixes - refs
2 parents 26d1e06 + 03920e6 commit 04b14e3

15 files changed

+32
-32
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"php": ">= 5.6"
2020
},
2121
"require-dev": {
22-
"phpunit/phpunit": "4.0.*"
22+
"phpunit/phpunit": "4.0.*",
23+
"squizlabs/php_codesniffer": "^3.1"
2324
}
2425
}

src/IntercomAdmins.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class IntercomAdmins
66
{
77

88
/**
9-
* @var IntercomClient
9+
* @var IntercomClient
1010
*/
1111
private $client;
1212

src/IntercomBulk.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class IntercomBulk
66
{
77

88
/**
9-
* @var IntercomClient
9+
* @var IntercomClient
1010
*/
1111
private $client;
1212

src/IntercomClient.php

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,87 +10,87 @@ class IntercomClient
1010
{
1111

1212
/**
13-
* @var Client $http_client
13+
* @var Client $http_client
1414
*/
1515
private $http_client;
1616

1717
/**
18-
* @var string API user authentication
18+
* @var string API user authentication
1919
*/
2020
protected $usernamePart;
2121

2222
/**
23-
* @var string API password authentication
23+
* @var string API password authentication
2424
*/
2525
protected $passwordPart;
2626

2727
/**
28-
* @var string Extra Guzzle Requests Options
28+
* @var string Extra Guzzle Requests Options
2929
*/
3030
protected $extraGuzzleRequestsOptions;
3131

3232
/**
33-
* @var IntercomUsers $users
33+
* @var IntercomUsers $users
3434
*/
3535
public $users;
3636

3737
/**
38-
* @var IntercomEvents $events
38+
* @var IntercomEvents $events
3939
*/
4040
public $events;
4141

4242
/**
43-
* @var IntercomCompanies $companies
43+
* @var IntercomCompanies $companies
4444
*/
4545
public $companies;
4646

4747
/**
48-
* @var IntercomMessages $messages
48+
* @var IntercomMessages $messages
4949
*/
5050
public $messages;
5151

5252
/**
53-
* @var IntercomConversations $conversations
53+
* @var IntercomConversations $conversations
5454
*/
5555
public $conversations;
5656

5757
/**
58-
* @var IntercomLeads $leads
58+
* @var IntercomLeads $leads
5959
*/
6060
public $leads;
6161

6262
/**
63-
* @var IntercomAdmins $admins
63+
* @var IntercomAdmins $admins
6464
*/
6565
public $admins;
6666

6767
/**
68-
* @var IntercomTags $tags
68+
* @var IntercomTags $tags
6969
*/
7070
public $tags;
7171

7272
/**
73-
* @var IntercomSegments $segments
73+
* @var IntercomSegments $segments
7474
*/
7575
public $segments;
7676

7777
/**
78-
* @var IntercomCounts $counts
78+
* @var IntercomCounts $counts
7979
*/
8080
public $counts;
8181

8282
/**
83-
* @var IntercomBulk $bulk
83+
* @var IntercomBulk $bulk
8484
*/
8585
public $bulk;
8686

8787
/**
88-
* @var IntercomNotes $notes
88+
* @var IntercomNotes $notes
8989
*/
9090
public $notes;
9191

9292
/**
93-
* @var int[] $rateLimitDetails
93+
* @var int[] $rateLimitDetails
9494
*/
9595
protected $rateLimitDetails = [];
9696

src/IntercomCompanies.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class IntercomCompanies
66
{
77

88
/**
9-
* @var IntercomClient
9+
* @var IntercomClient
1010
*/
1111
private $client;
1212

src/IntercomConversations.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class IntercomConversations
66
{
77

88
/**
9-
* @var IntercomClient
9+
* @var IntercomClient
1010
*/
1111
private $client;
1212

src/IntercomCounts.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class IntercomCounts
66
{
77

88
/**
9-
* @var IntercomClient
9+
* @var IntercomClient
1010
*/
1111
private $client;
1212

src/IntercomEvents.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class IntercomEvents
66
{
77

88
/**
9-
* @var IntercomClient
9+
* @var IntercomClient
1010
*/
1111
private $client;
1212

src/IntercomLeads.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class IntercomLeads
66
{
77

88
/**
9-
* @var IntercomClient
9+
* @var IntercomClient
1010
*/
1111
private $client;
1212

src/IntercomMessages.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class IntercomMessages
66
{
77

88
/**
9-
* @var IntercomClient
9+
* @var IntercomClient
1010
*/
1111
private $client;
1212

0 commit comments

Comments
 (0)