From 28e2f2c50c902d6ea09b2d6941c9e71ea07b23eb Mon Sep 17 00:00:00 2001 From: Sam Light Date: Mon, 31 Mar 2025 00:49:13 +0100 Subject: Created files for files to load --- src/File.php | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) (limited to 'src/File.php') diff --git a/src/File.php b/src/File.php index 3e64938..b2c52fc 100644 --- a/src/File.php +++ b/src/File.php @@ -2,7 +2,27 @@ namespace Lightscale\LaralightAssets; -class File +use Illuminate\Contracts\Support\Htmlable; + +abstract class File implements Htmlable { + private string $path; + + protected function setPath(string $path): void + { + $this->path = $path; + } + + public function getPath(): string + { + return $this->path; + } + + public function hash(): string + { + $class = static::class; + return md5("{$class}|{$this->path}"); + } + abstract public function toHtml(): string } -- cgit v1.2.3