first commit
This commit is contained in:
30
vendor/yiisoft/yii2-debug/src/DbAsset.php
vendored
Normal file
30
vendor/yiisoft/yii2-debug/src/DbAsset.php
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/**
|
||||
* @link https://www.yiiframework.com/
|
||||
* @copyright Copyright (c) 2008 Yii Software LLC
|
||||
* @license https://www.yiiframework.com/license/
|
||||
*/
|
||||
|
||||
namespace yii\debug;
|
||||
|
||||
use yii\web\AssetBundle;
|
||||
|
||||
/**
|
||||
* DB asset bundle
|
||||
*
|
||||
* @author Simon Karlen (simi.albi@outlook.com)
|
||||
* @since 2.1.0
|
||||
*/
|
||||
class DbAsset extends AssetBundle
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public $sourcePath = '@yii/debug/assets';
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public $js = [
|
||||
'js/db.js',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user