@@ -21,8 +21,8 @@ class BacktraceFactory
21
21
protected $ config ;
22
22
23
23
/**
24
- * @param \Throwable $exception
25
- * @param \Honeybadger\Config $config
24
+ * @param \Throwable $exception
25
+ * @param \Honeybadger\Config $config
26
26
*/
27
27
public function __construct (Throwable $ exception , Config $ config )
28
28
{
@@ -51,8 +51,9 @@ public function previous(): array
51
51
}
52
52
53
53
/**
54
- * @param \Throwable $e
55
- * @param array $previousCauses
54
+ * @param \Throwable $e
55
+ * @param array $previousCauses
56
+ *
56
57
* @return array
57
58
*/
58
59
private function formatPrevious (Throwable $ e , array $ previousCauses = []): array
@@ -71,7 +72,8 @@ private function formatPrevious(Throwable $e, array $previousCauses = []): array
71
72
}
72
73
73
74
/**
74
- * @param array $backtrace
75
+ * @param array $backtrace
76
+ *
75
77
* @return array
76
78
*/
77
79
private function offsetForThrownException (array $ backtrace ): array
@@ -83,24 +85,25 @@ private function offsetForThrownException(array $backtrace): array
83
85
while (strpos ($ backtrace [0 ]['class ' ] ?? '' , 'Honeybadger \\' ) !== false ) {
84
86
array_shift ($ backtrace );
85
87
}
86
- } else {
87
- $ backtrace [0 ] = array_merge ($ backtrace [0 ] ?? [], [
88
- 'line ' => $ this ->exception ->getLine (),
89
- 'file ' => $ this ->exception ->getFile (),
90
- ]);
91
88
}
92
89
90
+ $ backtrace [0 ] = array_merge ($ backtrace [0 ] ?? [], [
91
+ 'line ' => $ this ->exception ->getLine (),
92
+ 'file ' => $ this ->exception ->getFile (),
93
+ ]);
94
+
93
95
return $ backtrace ;
94
96
}
95
97
96
98
/**
97
- * @param array $backtrace
99
+ * @param array $backtrace
100
+ *
98
101
* @return array
99
102
*/
100
103
private function formatBacktrace (array $ backtrace ): array
101
104
{
102
105
return array_map (function ($ frame ) {
103
- if (! array_key_exists ('file ' , $ frame )) {
106
+ if (!array_key_exists ('file ' , $ frame )) {
104
107
$ context = $ this ->contextWithoutFile ($ frame );
105
108
} else {
106
109
$ context = $ this ->contextWithFile ($ frame );
@@ -119,6 +122,7 @@ private function formatBacktrace(array $backtrace): array
119
122
* Parse method arguments and make any transformations.
120
123
*
121
124
* @param array $args
125
+ *
122
126
* @return array
123
127
*/
124
128
private function parseArgs (array $ args ): array
@@ -129,12 +133,13 @@ private function parseArgs(array $args): array
129
133
}
130
134
131
135
/**
132
- * @param array $frame
136
+ * @param array $frame
137
+ *
133
138
* @return array
134
139
*/
135
140
private function contextWithoutFile (array $ frame ): array
136
141
{
137
- if (! empty ($ frame ['class ' ])) {
142
+ if (!empty ($ frame ['class ' ])) {
138
143
$ filename = sprintf ('%s%s%s ' , $ frame ['class ' ], $ frame ['type ' ], $ frame ['function ' ]);
139
144
140
145
try {
@@ -143,7 +148,7 @@ private function contextWithoutFile(array $frame): array
143
148
} catch (ReflectionException $ e ) {
144
149
// Forget it if we run into errors, it's not worth it.
145
150
}
146
- } elseif (! empty ($ frame ['function ' ])) {
151
+ } elseif (!empty ($ frame ['function ' ])) {
147
152
$ filename = sprintf ('%s(anonymous) ' , $ frame ['function ' ]);
148
153
} else {
149
154
$ filename = sprintf ('(anonymous) ' );
@@ -161,15 +166,16 @@ private function contextWithoutFile(array $frame): array
161
166
}
162
167
163
168
/**
164
- * @param array $frame
169
+ * @param array $frame
170
+ *
165
171
* @return array
166
172
*/
167
173
private function contextWithFile (array $ frame ): array
168
174
{
169
175
return [
170
176
'source ' => (new FileSource ($ frame ['file ' ], $ frame ['line ' ]))->getSource (),
171
177
'file ' => $ frame ['file ' ],
172
- 'number ' => (string ) $ frame ['line ' ],
178
+ 'number ' => (string )$ frame ['line ' ],
173
179
'context ' => $ this ->fileFromApplication ($ frame ['file ' ], $ this ->config ['vendor_paths ' ])
174
180
? 'app ' : 'all ' ,
175
181
];
@@ -182,11 +188,11 @@ private function fileFromApplication(string $filePath, array $vendorPaths): bool
182
188
// On Windows, file paths use backslashes, so we have to normalise them
183
189
$ path = str_replace ('\\' , '/ ' , $ path );
184
190
185
- if (Regex::match ('/ ' . array_shift ($ vendorPaths ). '/ ' , $ path )->hasMatch ()) {
191
+ if (Regex::match ('/ ' . array_shift ($ vendorPaths ) . '/ ' , $ path )->hasMatch ()) {
186
192
return false ;
187
193
}
188
194
189
- if (! empty ($ vendorPaths )) {
195
+ if (!empty ($ vendorPaths )) {
190
196
return $ this ->fileFromApplication ($ filePath , $ vendorPaths );
191
197
}
192
198
@@ -195,10 +201,10 @@ private function fileFromApplication(string $filePath, array $vendorPaths): bool
195
201
196
202
private function appendProjectRootToFilePath (string $ filePath ): string
197
203
{
198
- $ pregProjectRoot = preg_quote ($ this ->config ['project_root ' ]. '/ ' , '/ ' );
204
+ $ pregProjectRoot = preg_quote ($ this ->config ['project_root ' ] . '/ ' , '/ ' );
199
205
200
206
return $ this ->config ['project_root ' ]
201
- ? Regex::replace ('/ ' . $ pregProjectRoot. '/ ' , '' , $ filePath )->result ()
207
+ ? Regex::replace ('/ ' . $ pregProjectRoot . '/ ' , '' , $ filePath )->result ()
202
208
: '' ;
203
209
}
204
210
}
0 commit comments