Test Setup Failed
Push — master ( deb110...0b9d0a )
by Alexpts
01:22
created
src/TraceFormatter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,14 +24,14 @@
 block discarded – undo
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
Please login to merge, or discard this patch.