summaryrefslogtreecommitdiff
path: root/src/Assets.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Assets.php')
-rw-r--r--src/Assets.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Assets.php b/src/Assets.php
new file mode 100644
index 0000000..78cbe59
--- /dev/null
+++ b/src/Assets.php
@@ -0,0 +1,22 @@
+<?php
+
+namespace Lightscale\LaralightAssets;
+
+class Assets
+{
+ private string $manifestParser;
+ private array $manifests = [];
+ private array $manifestsParsers = [];
+ private array $files = [];
+ private array $queuedHeadFiles = [];
+ private array $queuedFooterFiles = [];
+
+ public function registerManifest(
+ string $name,
+ string $path,
+ string $baseUrl,
+ ): void
+ {
+
+ }
+}