HighlightBundle.php 514 B

123456789101112131415161718192021222324
  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\apidoc\templates\bootstrap\assets;
  8. use yii\web\View;
  9. /**
  10. * The asset bundle for the highlight.js styles.
  11. *
  12. * @author Carsten Brandt <mail@cebe.cc>
  13. * @since 2.0.5
  14. */
  15. class HighlightBundle extends \yii\web\AssetBundle
  16. {
  17. public $sourcePath = '@vendor/scrivo/highlight.php/styles';
  18. public $css = [
  19. 'solarized_light.css'
  20. ];
  21. }