Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
bezhanSalleh authored and github-actions[bot] committed Jan 9, 2024
1 parent 295d04d commit 85d2fea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Trace/Frame.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function parseCall($str)
if (str()->contains($matches[2], ['{closure}']) && Arr::get($this->attributes, 'name') == '[internal function]') {
$this->attributes['name'] .= " $matches[1]->$matches[2]";
}
// class method call
// class method call
} else {
preg_match('/([^(]+)\((.*)\)/', $str, $matches);
$this->attributes['function'] = $matches[1];
Expand Down

0 comments on commit 85d2fea

Please sign in to comment.