| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | public function init() |
||
| 25 | { |
||
| 26 | // define the path that your publishable resources live |
||
| 27 | $this->sourcePath = __DIR__.'/dist'; |
||
| 28 | |||
| 29 | // define the dependencies |
||
| 30 | $this->depends = [ |
||
| 31 | CpAsset::class, |
||
| 32 | ]; |
||
| 33 | |||
| 34 | // define the relative path to CSS/JS files that should be registered with the page |
||
| 35 | // when this asset bundle is registered |
||
| 36 | $this->css = [ |
||
| 37 | 'twitter.css', |
||
| 38 | ]; |
||
| 39 | |||
| 40 | parent::init(); |
||
| 41 | } |
||
| 42 | } |