| Total Complexity | 3 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 3 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 5 | class InputColor extends InputGroupComponent |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * The Bootstrap Colorpicker plugin configuration parameters. Array with |
||
| 9 | * key => value pairs, where the key should be an existing configuration |
||
| 10 | * property of the plugin. |
||
| 11 | * |
||
| 12 | * @var array |
||
| 13 | */ |
||
| 14 | public $config; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Create a new component instance. |
||
| 18 | * Note this component requires the 'Bootstrap Colorpicker' plugin. |
||
| 19 | * |
||
| 20 | * @return void |
||
| 21 | */ |
||
| 22 | 1 | public function __construct( |
|
| 31 | 1 | } |
|
| 32 | |||
| 33 | /** |
||
| 34 | * Get the view / contents that represent the component. |
||
| 35 | * |
||
| 36 | * @return \Illuminate\View\View|string |
||
| 37 | */ |
||
| 38 | 1 | public function render() |
|
| 43 |