Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | final class AssetLoaderInterfaceProxy implements AssetLoaderInterface |
||
12 | { |
||
13 | public function __construct( |
||
14 | private AssetLoaderInterface $assetLoader, |
||
15 | private AssetCollector $assetCollector |
||
16 | ) { |
||
17 | } |
||
18 | |||
19 | public function getAssetUrl(AssetBundle $bundle, string $assetPath): string |
||
22 | } |
||
23 | |||
24 | public function loadBundle(string $name, array $config = []): AssetBundle |
||
30 | } |
||
31 | } |
||
32 |