diff options
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>"; } } |