| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | public function addTrace(ParsedCallTrace $trace): void |
||
| 25 | { |
||
| 26 | $calleeEntry = null; |
||
| 27 | foreach ($trace->call_frames as $frame) { |
||
| 28 | $entry = $this->getFunctionEntry($frame->function_name, $frame->file_name); |
||
| 29 | $entry->addSample($frame->lineno, $calleeEntry); |
||
| 30 | $calleeEntry = $entry; |
||
| 31 | } |
||
| 40 |