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