Skip to content

Commit d37974c

Browse files
author
Kevin Antoine
authored
Merge pull request #203 from isaacesso/fix-wrappers-adapters-missing-notes-resource
fix wrappers/adapters missing notes resource
2 parents 809f1f7 + 225104b commit d37974c

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.
@@ -73,7 +76,6 @@ public function __construct($usernamePart, $passwordPart)
7376
$this->counts = new IntercomCounts($this);
7477
$this->bulk = new IntercomBulk($this);
7578
$this->notes = new IntercomNotes($this);
76-
$this->segments = new IntercomSegments($this);
7779

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

0 commit comments

Comments
 (0)