@@ -24,14 +24,14 @@ |
||
24 | 24 | { |
25 | 25 | return array_map(function(array $t): string { |
26 | 26 | $file = $this->getFile($t['file'] ?? ''); |
27 | - return $file . ':' . $t['line'] . ' :: ' . $t['class'] . $t['type'] . $t['function']; |
|
27 | + return $file.':'.$t['line'].' :: '.$t['class'].$t['type'].$t['function']; |
|
28 | 28 | }, $traces); |
29 | 29 | } |
30 | 30 | |
31 | 31 | protected function getFile(string $file): string |
32 | 32 | { |
33 | 33 | return $this->ignoreFilePrefixSize |
34 | - ? './' . mb_substr($file, $this->ignoreFilePrefixSize) |
|
34 | + ? './'.mb_substr($file, $this->ignoreFilePrefixSize) |
|
35 | 35 | : $file; |
36 | 36 | } |
37 | 37 | } |
38 | 38 | \ No newline at end of file |