Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
tabacitu authored and StyleCIBot committed Jan 22, 2025
1 parent 2f77066 commit bdb5284
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Helpers/CacheEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public function jsonSerialize(): array
public function getContent(): string
{
try {
if(! File::isFile($this->assetPath) && ! Str::isUrl($this->assetPath)) {
if (! File::isFile($this->assetPath) && ! Str::isUrl($this->assetPath)) {
return $this->assetPath;
}
$content = File::get($this->assetPath);
Expand Down

0 comments on commit bdb5284

Please sign in to comment.