Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | final class BootstrapAsset extends AssetBundle |
||
18 | { |
||
19 | public ?string $basePath = '@assets'; |
||
20 | |||
21 | public ?string $baseUrl = '@assetsUrl'; |
||
22 | |||
23 | public ?string $sourcePath = '@npm/bootstrap/dist'; |
||
24 | |||
25 | public array $css = [ |
||
26 | 'css/bootstrap.css', |
||
27 | ]; |
||
28 | |||
29 | public array $js = [ |
||
30 | 'js/bootstrap.bundle.js', |
||
31 | ]; |
||
32 | |||
33 | public function __construct() |
||
47 |