Total Complexity | 0 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | abstract class ModuleFederationAssetBundle extends AssetBundle |
||
16 | { |
||
17 | /** |
||
18 | * The module name is defined into the webpack module federation config file. |
||
19 | * Example: "remote" |
||
20 | */ |
||
21 | abstract public static function getModule(): string; |
||
22 | |||
23 | /** |
||
24 | * The scope is defined into the webpack module federation config file. |
||
25 | * Scope is usually the name of the exposed component. |
||
26 | * Example: "./MyPanel" |
||
27 | */ |
||
28 | abstract public static function getScope(): string; |
||
29 | } |
||
30 |