DbAsset.php 498 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * @link http://www.yiiframework.com/
  4. * @copyright Copyright (c) 2008 Yii Software LLC
  5. * @license http://www.yiiframework.com/license/
  6. */
  7. namespace yii\debug;
  8. use yii\web\AssetBundle;
  9. /**
  10. * DB asset bundle
  11. *
  12. * @author Simon Karlen (simi.albi@outlook.com)
  13. * @since 2.1.0
  14. */
  15. class DbAsset extends AssetBundle
  16. {
  17. /**
  18. * {@inheritdoc}
  19. */
  20. public $sourcePath = '@yii/debug/assets';
  21. /**
  22. * {@inheritdoc}
  23. */
  24. public $js = [
  25. 'js/db.js',
  26. ];
  27. }