You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
352 B

  1. <?php namespace Wpstudio\AssetsManifest\Classes;
  2. use Wpstudio\Assetsmanifest\Components\Manifest;
  3. class TwigFilters
  4. {
  5. public static function manifest($assetName): string
  6. {
  7. $manifest = app()->get(Manifest::class);
  8. assert($manifest instanceof Manifest);
  9. return $manifest->getManifestReader()->get($assetName);
  10. }
  11. }