| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 17 | final class BootstrapIconsAsset extends AssetBundle |
||
| 18 | { |
||
| 19 | public ?string $basePath = '@assets'; |
||
| 20 | |||
| 21 | public ?string $baseUrl = '@assetsUrl'; |
||
| 22 | |||
| 23 | public ?string $sourcePath = '@npm/bootstrap-icons/font'; |
||
| 24 | |||
| 25 | public array $css = [ |
||
| 26 | 'bootstrap-icons.css', |
||
| 27 | ]; |
||
| 28 | |||
| 29 | 1 | public function __construct() |
|
| 38 |