Skip to content

Commit

Permalink
Change member visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Auditor committed Jul 4, 2016
1 parent 857d0de commit d61c9cf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/BigBlueButton/Attendee.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,28 @@ class Attendee
*
* @var string
*/
public $userID;
protected $userID;

/**
* The full user name.
*
* @var string
*/
public $fullName;
protected $fullName;

/**
* The user role.
*
* @var string
*/
public $role;
protected $role;

/**
* Custom user data.
*
* @var array
*/
public $customdata;
protected $customdata;

/**
* Attendee constructor.
Expand Down
8 changes: 4 additions & 4 deletions src/BigBlueButton/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,28 +22,28 @@ class Client
*
* @var string
*/
public $url;
protected $url;

/**
* The server secret.
*
* @var string
*/
public $secret;
protected $secret;

/**
* The api endpoint.
*
* @var string
*/
private $endpoint;
protected $endpoint;

/**
* The HTTP client.
*
* @var \GuzzleHttp\Client
*/
private $HTTPClient;
protected $client;

/**
* Client constructor.
Expand Down

0 comments on commit d61c9cf

Please sign in to comment.