1 | <?php |
||
9 | class PartialAssetComposer |
||
10 | { |
||
11 | /** |
||
12 | * @var AssetManager |
||
13 | */ |
||
14 | private $assetManager; |
||
15 | /** |
||
16 | * @var AssetPipeline |
||
17 | */ |
||
18 | private $assetPipeline; |
||
19 | /** |
||
20 | * @var AssetTypeFactory |
||
21 | */ |
||
22 | private $assetFactory; |
||
23 | |||
24 | public function __construct() |
||
30 | |||
31 | public function compose() |
||
36 | |||
37 | /** |
||
38 | * Add the assets from the config file on the asset manager |
||
39 | */ |
||
40 | private function addAssets() |
||
47 | |||
48 | /** |
||
49 | * Require assets from asset manager |
||
50 | */ |
||
51 | private function requireAssets() |
||
56 | } |
||
57 |