1 | <?php |
||
5 | class AssetManager |
||
6 | { |
||
7 | /** @var string[] $assetFolders */ |
||
8 | private $assetFolders = []; |
||
9 | |||
10 | /** @var string $destinationFolder */ |
||
11 | private $destinationFolder = ''; |
||
12 | |||
13 | /** @var array $deployInfo */ |
||
14 | private $deployInfo = []; |
||
15 | |||
16 | /** |
||
17 | * @return string |
||
18 | */ |
||
19 | public function addAssetsFolder(string $key, string $dir): void |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | public function setDestinationFolder(string $dir): void |
||
39 | |||
40 | /** |
||
41 | * @return bool |
||
42 | */ |
||
43 | public function deployAssets(): bool |
||
51 | } |