Skip to content

Commit ec76c0f

Browse files
committed
wip
1 parent 15f4250 commit ec76c0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/CachesValue.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,9 +295,9 @@ public function markValue($value): string
295295
! config('permanent-cache.components.markers.enabled') ||
296296
! is_subclass_of($this, CachedComponent::class)
297297
) {
298-
return (string) $value;
298+
return $value;
299299
}
300300

301-
return $this->getMarker().$value.$this->getMarker(close: true);
301+
return (string) $this->getMarker().$value.$this->getMarker(close: true);
302302
}
303303
}

0 commit comments

Comments
 (0)