Skip to content

Commit 341aefc

Browse files
committed
Fix occasionally missing backtrace in errors (closes #162)
1 parent fb90bc0 commit 341aefc

File tree

1 file changed

+27
-21
lines changed

1 file changed

+27
-21
lines changed

src/BacktraceFactory.php

+27-21
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ class BacktraceFactory
2121
protected $config;
2222

2323
/**
24-
* @param \Throwable $exception
25-
* @param \Honeybadger\Config $config
24+
* @param \Throwable $exception
25+
* @param \Honeybadger\Config $config
2626
*/
2727
public function __construct(Throwable $exception, Config $config)
2828
{
@@ -51,8 +51,9 @@ public function previous(): array
5151
}
5252

5353
/**
54-
* @param \Throwable $e
55-
* @param array $previousCauses
54+
* @param \Throwable $e
55+
* @param array $previousCauses
56+
*
5657
* @return array
5758
*/
5859
private function formatPrevious(Throwable $e, array $previousCauses = []): array
@@ -71,7 +72,8 @@ private function formatPrevious(Throwable $e, array $previousCauses = []): array
7172
}
7273

7374
/**
74-
* @param array $backtrace
75+
* @param array $backtrace
76+
*
7577
* @return array
7678
*/
7779
private function offsetForThrownException(array $backtrace): array
@@ -83,24 +85,25 @@ private function offsetForThrownException(array $backtrace): array
8385
while (strpos($backtrace[0]['class'] ?? '', 'Honeybadger\\') !== false) {
8486
array_shift($backtrace);
8587
}
86-
} else {
87-
$backtrace[0] = array_merge($backtrace[0] ?? [], [
88-
'line' => $this->exception->getLine(),
89-
'file' => $this->exception->getFile(),
90-
]);
9188
}
9289

90+
$backtrace[0] = array_merge($backtrace[0] ?? [], [
91+
'line' => $this->exception->getLine(),
92+
'file' => $this->exception->getFile(),
93+
]);
94+
9395
return $backtrace;
9496
}
9597

9698
/**
97-
* @param array $backtrace
99+
* @param array $backtrace
100+
*
98101
* @return array
99102
*/
100103
private function formatBacktrace(array $backtrace): array
101104
{
102105
return array_map(function ($frame) {
103-
if (! array_key_exists('file', $frame)) {
106+
if (!array_key_exists('file', $frame)) {
104107
$context = $this->contextWithoutFile($frame);
105108
} else {
106109
$context = $this->contextWithFile($frame);
@@ -119,6 +122,7 @@ private function formatBacktrace(array $backtrace): array
119122
* Parse method arguments and make any transformations.
120123
*
121124
* @param array $args
125+
*
122126
* @return array
123127
*/
124128
private function parseArgs(array $args): array
@@ -129,12 +133,13 @@ private function parseArgs(array $args): array
129133
}
130134

131135
/**
132-
* @param array $frame
136+
* @param array $frame
137+
*
133138
* @return array
134139
*/
135140
private function contextWithoutFile(array $frame): array
136141
{
137-
if (! empty($frame['class'])) {
142+
if (!empty($frame['class'])) {
138143
$filename = sprintf('%s%s%s', $frame['class'], $frame['type'], $frame['function']);
139144

140145
try {
@@ -143,7 +148,7 @@ private function contextWithoutFile(array $frame): array
143148
} catch (ReflectionException $e) {
144149
// Forget it if we run into errors, it's not worth it.
145150
}
146-
} elseif (! empty($frame['function'])) {
151+
} elseif (!empty($frame['function'])) {
147152
$filename = sprintf('%s(anonymous)', $frame['function']);
148153
} else {
149154
$filename = sprintf('(anonymous)');
@@ -161,15 +166,16 @@ private function contextWithoutFile(array $frame): array
161166
}
162167

163168
/**
164-
* @param array $frame
169+
* @param array $frame
170+
*
165171
* @return array
166172
*/
167173
private function contextWithFile(array $frame): array
168174
{
169175
return [
170176
'source' => (new FileSource($frame['file'], $frame['line']))->getSource(),
171177
'file' => $frame['file'],
172-
'number' => (string) $frame['line'],
178+
'number' => (string)$frame['line'],
173179
'context' => $this->fileFromApplication($frame['file'], $this->config['vendor_paths'])
174180
? 'app' : 'all',
175181
];
@@ -182,11 +188,11 @@ private function fileFromApplication(string $filePath, array $vendorPaths): bool
182188
// On Windows, file paths use backslashes, so we have to normalise them
183189
$path = str_replace('\\', '/', $path);
184190

185-
if (Regex::match('/'.array_shift($vendorPaths).'/', $path)->hasMatch()) {
191+
if (Regex::match('/' . array_shift($vendorPaths) . '/', $path)->hasMatch()) {
186192
return false;
187193
}
188194

189-
if (! empty($vendorPaths)) {
195+
if (!empty($vendorPaths)) {
190196
return $this->fileFromApplication($filePath, $vendorPaths);
191197
}
192198

@@ -195,10 +201,10 @@ private function fileFromApplication(string $filePath, array $vendorPaths): bool
195201

196202
private function appendProjectRootToFilePath(string $filePath): string
197203
{
198-
$pregProjectRoot = preg_quote($this->config['project_root'].'/', '/');
204+
$pregProjectRoot = preg_quote($this->config['project_root'] . '/', '/');
199205

200206
return $this->config['project_root']
201-
? Regex::replace('/'.$pregProjectRoot.'/', '', $filePath)->result()
207+
? Regex::replace('/' . $pregProjectRoot . '/', '', $filePath)->result()
202208
: '';
203209
}
204210
}

0 commit comments

Comments
 (0)