Total Complexity | 1 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | class IconWidget4 extends \yii\bootstrap4\Widget |
||
33 | { |
||
34 | /** @var array|null overrides of the default settings */ |
||
35 | public static $defaults; |
||
36 | |||
37 | /** @var string name of the icon */ |
||
38 | public $name; |
||
39 | |||
40 | /** @var array icon settings */ |
||
41 | public $options = []; |
||
42 | |||
43 | /** |
||
44 | * Executes the widget. |
||
45 | * |
||
46 | * @return string The icon |
||
47 | */ |
||
48 | public function run(): string |
||
58 |