summaryrefslogtreecommitdiff
path: root/src/StyleFile.php
diff options
context:
space:
mode:
authorSam Light <sam@lightscale.co.uk>2025-03-31 23:20:55 +0100
committerSam Light <samlight1994@gmail.com>2025-03-31 23:20:55 +0100
commit35e124960f3103d0cebc5b843054930c730998ab (patch)
tree1aec8df0846870958ba836c5e50ceed36b0a2885 /src/StyleFile.php
parentd700b3b5772022902948430d076fc3c0a00f20ef (diff)
Changes to the File classes
Diffstat (limited to 'src/StyleFile.php')
-rw-r--r--src/StyleFile.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/StyleFile.php b/src/StyleFile.php
index ea3e425..0007215 100644
--- a/src/StyleFile.php
+++ b/src/StyleFile.php
@@ -4,14 +4,9 @@ namespace Lightscale\LaralightAssets;
class StyleFile extends File
{
- public function __construct(string $path)
- {
- $this->setPath($path);
- }
-
public function toHtml(): string
{
- $path = $this->getPath();
+ $path = $this->getUrl();
return "<link type=\"text/css\" rel=\"stylesheet\" href=\"{$path}\" />";
}
}