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.

16 lines
338 B

3 years ago
  1. <?php namespace Wpstudio\AssetsManifest\Classes;
  2. class ManifestReader
  3. {
  4. private $manifest = null;
  5. public function __construct(string $manifestPath)
  6. {
  7. $this->manifest = json_decode(file_get_contents($manifestPath));
  8. }
  9. public function get($assetName)
  10. {
  11. return $this->manifest->$assetName;
  12. }
  13. }