1 | <?php |
||
18 | class ManifestBuilder |
||
19 | { |
||
20 | |||
21 | /** |
||
22 | * @var |
||
23 | */ |
||
24 | private $mixManifest; |
||
25 | |||
26 | /** |
||
27 | * @var \ExoUNX\Vasri\ManifestReader |
||
28 | */ |
||
29 | private $manifestReader; |
||
30 | |||
31 | /** |
||
32 | * ManifestBuilder constructor. |
||
33 | */ |
||
34 | public function __construct() |
||
39 | |||
40 | /** |
||
41 | * @return array |
||
42 | * @throws Exception |
||
43 | */ |
||
44 | private function buildAssets(): array |
||
65 | |||
66 | /** |
||
67 | * @throws Exception |
||
68 | */ |
||
69 | public function buildManifest(): void |
||
74 | |||
75 | /** |
||
76 | * @return \ExoUNX\Vasri\ManifestReader |
||
77 | */ |
||
78 | private function loadManifestReader(): ManifestReader |
||
82 | |||
83 | } |
||
84 |