123456789101112131415161718192021222324252627282930 |
- <?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;
- /**
- * 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',
- ];
- }
|