2021-02-10 00:04:59 +03:00
|
|
|
<?php
|
2021-08-07 00:38:53 +03:00
|
|
|
/**
|
2022-10-13 15:11:49 +03:00
|
|
|
* @link https://www.yiiframework.com/
|
2021-08-07 00:38:53 +03:00
|
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
2022-10-13 15:11:49 +03:00
|
|
|
* @license https://www.yiiframework.com/license/
|
2021-08-07 00:38:53 +03:00
|
|
|
*/
|
2021-02-10 00:04:59 +03:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace yii\bootstrap5;
|
|
|
|
|
|
|
|
use yii\web\AssetBundle;
|
|
|
|
|
2022-10-13 15:11:49 +03:00
|
|
|
/**
|
|
|
|
* Twitter Bootstrap 5 CSS bundle.
|
|
|
|
*/
|
2021-02-10 00:04:59 +03:00
|
|
|
class BootstrapAsset extends AssetBundle
|
|
|
|
{
|
2022-10-13 15:11:49 +03:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public $sourcePath = '@bower/bootstrap';
|
2022-11-30 08:47:12 +01:00
|
|
|
|
2022-10-13 15:11:49 +03:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
2021-02-10 00:04:59 +03:00
|
|
|
public $css = [
|
2022-11-30 08:47:12 +01:00
|
|
|
'dist/css/bootstrap.css'
|
2021-02-10 00:04:59 +03:00
|
|
|
];
|
|
|
|
}
|