Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
change property visibility from private to protected
  • Loading branch information
cosmastech committed Apr 5, 2023
commit c6c05f63ec3332eb6657cdd4e7c3659738fc188a
12 changes: 6 additions & 6 deletions src/IntercomClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,32 +26,32 @@ class IntercomClient
/**
* @var HttpClient $httpClient
*/
private $httpClient;
protected $httpClient;

/**
* @var RequestFactory $requestFactory
*/
private $requestFactory;
protected $requestFactory;

/**
* @var UriFactory $uriFactory
*/
private $uriFactory;
protected $uriFactory;

/**
* @var string API user authentication
*/
private $appIdOrToken;
protected $appIdOrToken;

/**
* @var string API password authentication
*/
private $passwordPart;
protected $passwordPart;

/**
* @var array $extraRequestHeaders
*/
private $extraRequestHeaders;
protected $extraRequestHeaders;

/**
* @var IntercomUsers $users
Expand Down