manifest = file_exists($manifestPath) ? json_decode(file_get_contents($manifestPath), true) : []; } /** @inheritdoc */ public function get($file) { return isset($this->manifest[$file]) ? $this->manifest[$file] : $file; } /** @inheritdoc */ public function getAll() { return $this->manifest; } }