Take shortcut when exporting a string
This commit is contained in:
parent
a2f0736101
commit
208c14fa3a
|
|
@ -96,7 +96,7 @@ final readonly class Exporter
|
||||||
public function shortenedExport(mixed $value): string
|
public function shortenedExport(mixed $value): string
|
||||||
{
|
{
|
||||||
if (is_string($value)) {
|
if (is_string($value)) {
|
||||||
$string = str_replace("\n", '', $this->export($value));
|
$string = str_replace("\n", '', $this->exportString($value));
|
||||||
|
|
||||||
if (mb_strlen($string) > 40) {
|
if (mb_strlen($string) > 40) {
|
||||||
return mb_substr($string, 0, 30) . '...' . mb_substr($string, -7);
|
return mb_substr($string, 0, 30) . '...' . mb_substr($string, -7);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue