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