diff options
author | Sam Light <sam@lightscale.co.uk> | 2025-03-31 23:20:55 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-03-31 23:20:55 +0100 |
commit | 35e124960f3103d0cebc5b843054930c730998ab (patch) | |
tree | 1aec8df0846870958ba836c5e50ceed36b0a2885 /src/ScriptFile.php | |
parent | d700b3b5772022902948430d076fc3c0a00f20ef (diff) |
Changes to the File classes
Diffstat (limited to 'src/ScriptFile.php')
-rw-r--r-- | src/ScriptFile.php | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/ScriptFile.php b/src/ScriptFile.php index f8f11cd..b1c4449 100644 --- a/src/ScriptFile.php +++ b/src/ScriptFile.php @@ -4,14 +4,9 @@ namespace Lightscale\LaralightAssets; class ScriptFile extends File { - public function __construct(string $path) - { - $this->setPath($path); - } - public function toHtml(): string { - $path = $this->getPath(); + $path = $this->getUrl(); return "<script src=\"{$path}\"></script>"; } } |