Skip to content

Commit 225104b

Browse files
committed
fix wrappers/adapters missing notes resource and removed duplicated $segments instanciation line
1 parent 2dfc3e0 commit 225104b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/IntercomClient.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ class IntercomClient
5252
/** @var IntercomBulk $bulk */
5353
public $bulk;
5454

55+
/** @var IntercomNotes $notes */
56+
public $notes;
57+
5558
/**
5659
* IntercomClient constructor.
5760
* @param string $usernamePart App ID.
@@ -72,7 +75,6 @@ public function __construct($usernamePart, $passwordPart)
7275
$this->counts = new IntercomCounts($this);
7376
$this->bulk = new IntercomBulk($this);
7477
$this->notes = new IntercomNotes($this);
75-
$this->segments = new IntercomSegments($this);
7678

7779
$this->usernamePart = $usernamePart;
7880
$this->passwordPart = $passwordPart;

0 commit comments

Comments
 (0)