Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | final class WebpackAssetExporter implements AssetExporterInterface |
||
18 | { |
||
19 | /** |
||
20 | * @param string $targetFile The full path to the target JavaScript file. |
||
21 | */ |
||
22 | 3 | public function __construct(private string $targetFile) |
|
23 | { |
||
24 | 3 | } |
|
25 | |||
26 | /** |
||
27 | * @inheritDoc |
||
28 | * |
||
29 | * @throws RuntimeException If an error occurred while writing to the JavaScript file. |
||
30 | */ |
||
31 | 3 | public function export(array $assetBundles): void |
|
40 | } |
||
41 | } |
||
42 |