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