We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5d6313 commit dae519bCopy full SHA for dae519b
2 files changed
src/Helper/OutputHelper.php
@@ -99,7 +99,7 @@ public function printTrace(Throwable $e): void
99
$traceStr .= " <comment>$i)</end> <red>$symbol</end><comment>($args)</end>";
100
if ('' !== $trace['file']) {
101
$file = realpath($trace['file']);
102
- $traceStr .= "<eol/> <yellow>at $file</end><white>:{$trace['line']}</end><eol/>";
+ $traceStr .= "<eol/> <yellow>{$this->translate('thrownAt')} $file</end><white>:{$trace['line']}</end><eol/>";
103
}
104
105
src/Translations/en.php
@@ -28,6 +28,7 @@
28
'showVersion' => 'Show version',
29
'stackTrace' => 'Stack Trace',
30
'thrownIn' => 'thrown in',
31
+ 'thrownAt' => 'at',
32
'usage' => 'Usage',
33
'usageExamples' => 'Usage Examples',
34
'version' => 'version',
0 commit comments