Browse Source

fixes #979

tags/2.0.0-beta
Alexander Makarov 11 years ago
parent
commit
616b406a0c
  1. 11
      framework/yii/web/AssetBundle.php

11
framework/yii/web/AssetBundle.php

@ -68,7 +68,16 @@ class AssetBundle extends Object
*/
public $baseUrl;
/**
* @var array list of the bundle names that this bundle depends on
* @var array list of bundle class names that this bundle depends on.
*
* For example:
*
* ```php
* public $depends = [
* 'yii\web\YiiAsset',
* 'yii\bootstrap\BootstrapAsset',
* ];
* ```
*/
public $depends = [];
/**

Loading…
Cancel
Save