Commit 616b406a by Alexander Makarov

fixes #979

parent ffb37f8e
...@@ -68,7 +68,16 @@ class AssetBundle extends Object ...@@ -68,7 +68,16 @@ class AssetBundle extends Object
*/ */
public $baseUrl; 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 = []; public $depends = [];
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment