Skip to content

Commit

Permalink
prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
mredolatti committed Dec 14, 2023
1 parent d258f9f commit 05c4650
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
1.4.0 (Dec 13, 2023):
1.4.0 (Dec 14, 2023):
- Add support for a custom tracer for client methods.
- Support finer granularity timeouts and milliseconds granularity.
- Support finer granularity on timeouts.

1.3.0 (Nov 10, 2023):
- Added in-memory evaluation cache for the duration of a request.
Expand Down
2 changes: 1 addition & 1 deletion examples/tracer.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ class CustomTracer implements TracerHook

private $traces = [];

// assume we only care about getTreatment() calls...
public function on(array $event)
{

// assume we only care about getTreatment() calls...
if ($event['method'] != Tracer::METHOD_GET_TREATMENT) {
return;
}
Expand Down

0 comments on commit 05c4650

Please sign in to comment.