Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Jan 9, 2021
1 parent a1e02b9 commit 7cb95aa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `ray` will be documented in this file

## 1.3.7 - 2020-01-09

add `vendor_frame` attribute to frames

## 1.3.6 - 2020-01-09

- allow older version of uuid package
Expand Down
1 change: 1 addition & 0 deletions src/Payloads/CallerPayload.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public function getContent(): array
'line_number' => $frame->lineNumber,
'class' => $frame->class,
'method' => $frame->method,
'vendor_frame' => ! $frame->applicationFrame,
],
];
}
Expand Down
1 change: 1 addition & 0 deletions src/Payloads/TracePayload.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public function getContent(): array
'line_number' => $frame->lineNumber,
'class' => $frame->class,
'method' => $frame->method,
'vendor_frame' => ! $frame->applicationFrame,
], $this->frames);

if (! is_null($this->limit)) {
Expand Down

0 comments on commit 7cb95aa

Please sign in to comment.