Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
markvaneijk committed May 10, 2024
1 parent 15f4250 commit ec76c0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CachesValue.php
Original file line number Diff line number Diff line change
Expand Up @@ -295,9 +295,9 @@ public function markValue($value): string
! config('permanent-cache.components.markers.enabled') ||
! is_subclass_of($this, CachedComponent::class)
) {
return (string) $value;
return $value;
}

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

0 comments on commit ec76c0f

Please sign in to comment.