Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Customers Product]: Change references from 'Users' to 'Customers' within documentation 👥 #134

Closed
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ try {
}
```

### Affected user tracking
### Customers

You can call `$raygunClient->SetUser`, passing in some or all of the following data, which will be used to provide an affected user count and reports:

Expand All @@ -236,7 +236,7 @@ $raygunClient->SetUser($user = 'email_or_unique_identifier', $firstName = 'Examp
This feature and values are optional if you wish to disable it for privacy concerns. To do so, pass `true` in as the second parameter to the RaygunClient constructor.

```php
// Disable user tracking:
// Disable Customers:
$raygunClient = new RaygunClient($transport, true);
```

Expand Down Expand Up @@ -294,7 +294,7 @@ Note that when any filters are defined, the Raygun error will no longer contain

### Updating Cookie options

Cookies are used for the user tracking functionality of the Raygun4PHP provider. In version 1.8 of the provider, the options passed to the `setcookie` method can now be customized to your needs.
Cookies are used for the Customers functionality of the Raygun4PHP provider. In version 1.8 of the provider, the options passed to the `setcookie` method can now be customized to your needs.

```php
$raygunClient->SetCookieOptions([
Expand Down Expand Up @@ -353,7 +353,7 @@ See the [Error Control Operators section on PHP.net](http://php.net/manual/en/la
- 1.6.0: Added HTTP proxy support, support X-Forwarded-For, null server var guards
- 1.5.3: Unify property casing (internal change)
- 1.5.2: Prevent error when query_string isn't present in $_SERVER
- 1.5.1: Guard against intermittent user id cookie being null; overload for disabling user tracking
- 1.5.1: Guard against intermittent user id cookie being null; overload for disabling user tracking/Customers
- 1.5.0: Add enhanced user data support; fix null backtrace frames that could occur in 1.4
- 1.4.0: Added Sensitive Data Filtering; improved Error backtraces; Travis CI enabled
- 1.3.6: Move included Rhumsaa\Uuid lib into this namespace to prevent collisions if already included
Expand All @@ -368,7 +368,7 @@ See the [Error Control Operators section on PHP.net](http://php.net/manual/en/la
- 1.2.4: Merged in unit tests
- 1.2.3: Fixed a bug where OccurredOn wasn't in correct ISO 8601 representation
- 1.2.2: Minor formatting refactor
- 1.2.1: Several bugfixes for user tracking and request processing
- 1.2.1: Several bugfixes for user tracking/Customers and request processing
- 1.2: Added new async sending function; removed cURL dependency
- 1.1: Added user tracking support; improved experience in CLI mode; add user-specified timestamp support; fixed user data encoding error
- 1.1: Added user tracking/Customers support; improved experience in CLI mode; add user-specified timestamp support; fixed user data encoding error
- 1.0: Initial commit
2 changes: 1 addition & 1 deletion sample-apps/async-example/raygunSetup.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public function __construct($tags = [], $useAsync = true)

$raygunClient = new RaygunClient($this->transport);

// Get the logged-in user info to track affected user
// Get the logged-in user info to track Customers
$raygunClient->SetUser("[email protected]", "Test", "Test User", "[email protected]");

$this->tags = $tags;
Expand Down