1 | <?php |
||
14 | class AssetBundle extends \yii\web\AssetBundle |
||
15 | { |
||
16 | |||
17 | /** |
||
18 | * @inherit |
||
19 | */ |
||
20 | public $sourcePath = '@vendor/rmrevin/yii2-fontawesome/assets'; |
||
21 | |||
22 | /** |
||
23 | * @inherit |
||
24 | */ |
||
25 | public $css = [ |
||
26 | 'css/font-awesome.min.css', |
||
27 | ]; |
||
28 | |||
29 | /** |
||
30 | * Initializes the bundle. |
||
31 | * Set publish options to copy only necessary files (in this case css and font folders) |
||
32 | * @codeCoverageIgnore |
||
33 | */ |
||
34 | public function init() |
||
42 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.