init
This commit is contained in:
29
vendor/yiisoft/yii2-debug/DebugAsset.php
vendored
Normal file
29
vendor/yiisoft/yii2-debug/DebugAsset.php
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/**
|
||||
* @link http://www.yiiframework.com/
|
||||
* @copyright Copyright (c) 2008 Yii Software LLC
|
||||
* @license http://www.yiiframework.com/license/
|
||||
*/
|
||||
|
||||
namespace yii\debug;
|
||||
|
||||
use yii\web\AssetBundle;
|
||||
|
||||
/**
|
||||
* Debugger asset bundle
|
||||
*
|
||||
* @author Qiang Xue <qiang.xue@gmail.com>
|
||||
* @since 2.0
|
||||
*/
|
||||
class DebugAsset extends AssetBundle
|
||||
{
|
||||
public $sourcePath = '@yii/debug/assets';
|
||||
public $css = [
|
||||
'main.css',
|
||||
'toolbar.css',
|
||||
];
|
||||
public $depends = [
|
||||
'yii\web\YiiAsset',
|
||||
'yii\bootstrap\BootstrapAsset',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user