Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class Input 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, $labelClass = null, |
||
14 | $topClass = null, $inputGroupClass = null, $disableFeedback = null |
||
15 | ) { |
||
16 | 1 | parent::__construct( |
|
17 | 1 | $name, $label, $size, $labelClass, $topClass, |
|
18 | $inputGroupClass, $disableFeedback |
||
19 | ); |
||
20 | 1 | } |
|
21 | |||
22 | /** |
||
23 | * Get the view / contents that represent the component. |
||
24 | * |
||
25 | * @return \Illuminate\View\View|string |
||
26 | */ |
||
27 | 1 | public function render() |
|
30 | } |
||
31 | } |
||
32 |