diff options
author | Sam Light <sam@lightscale.co.uk> | 2025-03-30 22:22:27 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2025-03-30 22:22:27 +0100 |
commit | 41eda0c73d0a1f5273ccacac57176f450c294e04 (patch) | |
tree | cf2caf6cfc247784823906da2d8b4115886d9171 /src/Contracts | |
parent | 5ed1fd22ac92e78c3feae6b1c33df35f3d3cab60 (diff) |
Some basic structure
Diffstat (limited to 'src/Contracts')
-rw-r--r-- | src/Contracts/ManifestParser.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Contracts/ManifestParser.php b/src/Contracts/ManifestParser.php new file mode 100644 index 0000000..d4442aa --- /dev/null +++ b/src/Contracts/ManifestParser.php @@ -0,0 +1,8 @@ +<?php + +namespace Lightscale\LaralightAssets\Contracts; + +interface ManifestParser +{ + public function parse(string $data): array; +} |