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 15f4250 commit ec76c0fCopy full SHA for ec76c0f
src/CachesValue.php
@@ -295,9 +295,9 @@ public function markValue($value): string
295
! config('permanent-cache.components.markers.enabled') ||
296
! is_subclass_of($this, CachedComponent::class)
297
) {
298
- return (string) $value;
+ return $value;
299
}
300
301
- return $this->getMarker().$value.$this->getMarker(close: true);
+ return (string) $this->getMarker().$value.$this->getMarker(close: true);
302
303
0 commit comments