| 1 | <?php |
||
| 17 | class ManifestBuilder |
||
| 18 | { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var |
||
| 22 | */ |
||
| 23 | private $mixManifest; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var ManifestReader |
||
| 27 | */ |
||
| 28 | private $manifestReader; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var Builder |
||
| 32 | */ |
||
| 33 | private $builder; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * ManifestBuilder constructor. |
||
| 37 | */ |
||
| 38 | public function __construct() |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return array |
||
| 47 | * @throws Exception |
||
| 48 | */ |
||
| 49 | private function buildAssets(): array |
||
| 70 | |||
| 71 | /** |
||
| 72 | * @return array |
||
| 73 | * @throws Exception |
||
| 74 | */ |
||
| 75 | private function buildManifest(): array |
||
| 87 | |||
| 88 | /** |
||
| 89 | * @throws Exception |
||
| 90 | */ |
||
| 91 | public function deployManifest(): void |
||
| 96 | |||
| 97 | } |
||
| 98 |