GreenMeteor /
humhub-steam-module
| 1 | <?php |
||
| 2 | |||
| 3 | namespace humhub\modules\steam; |
||
| 4 | |||
| 5 | use Yii; |
||
| 6 | use yii\web\AssetBundle; |
||
| 7 | |||
| 8 | class Assets extends AssetBundle |
||
| 9 | {
|
||
| 10 | |||
| 11 | public $publishOptions = [ |
||
| 12 | 'forceCopy' => true |
||
| 13 | ]; |
||
| 14 | |||
| 15 | public function init() |
||
| 16 | {
|
||
| 17 | $this->sourcePath = dirname(__FILE__) . '/assets'; |
||
|
0 ignored issues
–
show
Bug
Best Practice
introduced
by
Loading history...
|
|||
| 18 | parent::init(); |
||
| 19 | } |
||
| 20 | } |
||
| 21 |