Total Complexity | 2 |
Total Lines | 52 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
7 | class ProfileWidgetItem extends Component |
||
8 | { |
||
9 | /** |
||
10 | * The title/header for the item. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | public $title; |
||
15 | |||
16 | /** |
||
17 | * The text/description for the item. |
||
18 | * |
||
19 | * @var string |
||
20 | */ |
||
21 | public $text; |
||
22 | |||
23 | /** |
||
24 | * A Font Awesome icon for the item. |
||
25 | * |
||
26 | * @var string |
||
27 | */ |
||
28 | public $icon; |
||
29 | |||
30 | /** |
||
31 | * The item size. Used to wrap the item inside a col-sm-size div. |
||
32 | * |
||
33 | * @var string |
||
34 | */ |
||
35 | public $size; |
||
36 | |||
37 | /** |
||
38 | * Create a new component instance. |
||
39 | * |
||
40 | * @return void |
||
41 | */ |
||
42 | 1 | public function __construct( |
|
49 | 1 | } |
|
50 | |||
51 | /** |
||
52 | * Get the view / contents that represent the component. |
||
53 | * |
||
54 | * @return \Illuminate\View\View|string |
||
55 | */ |
||
56 | 1 | public function render() |
|
61 |