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 Dec 26, 2024
1 parent 8785565 commit 4c6a702
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/BassetManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public function map(string $asset, string $source, array $attributes = []): void
}

$this->namedAssets[$asset] = [
'source' => $source,
'source' => $source,
'attributes' => $attributes,
];
}
Expand Down
8 changes: 4 additions & 4 deletions src/Helpers/CacheEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@ public function isLocalAsset()
public function toArray(): array
{
return [
'asset_name' => $this->assetName,
'asset_path' => $this->assetPath,
'asset_name' => $this->assetName,
'asset_path' => $this->assetPath,
'asset_disk_path' => isset($this->assetDiskPath) ? $this->assetDiskPath : $this->getPathOnDisk($this->assetPath),
'attributes' => $this->attributes,
'content_hash' => $this->content_hash,
'attributes' => $this->attributes,
'content_hash' => $this->content_hash,
];
}

Expand Down

0 comments on commit 4c6a702

Please sign in to comment.