Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
5 | class Textarea extends InputGroupComponent |
||
6 | { |
||
7 | /** |
||
8 | * Create a new component instance. |
||
9 | * |
||
10 | * @return void |
||
11 | */ |
||
12 | 1 | public function __construct( |
|
13 | $name, $label = null, $size = null, |
||
14 | $labelClass = null, $topClass = null, $disableFeedback = null |
||
15 | ) { |
||
16 | 1 | parent::__construct( |
|
17 | 1 | $name, $label, $size, $labelClass, $topClass, $disableFeedback |
|
18 | ); |
||
19 | 1 | } |
|
20 | |||
21 | /** |
||
22 | * Get the view / contents that represent the component. |
||
23 | * |
||
24 | * @return \Illuminate\View\View|string |
||
25 | */ |
||
26 | 1 | public function render() |
|
29 | } |
||
30 | } |
||
31 |