| Total Complexity | 3 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 5 | class TextEditor extends InputGroupComponent |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * The Summernote plugin configuration parameters. Array with key => value |
||
| 9 | * pairs, where the key should be an existing configuration property of |
||
| 10 | * the plugin. |
||
| 11 | * |
||
| 12 | * @var array |
||
| 13 | */ |
||
| 14 | public $config; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Create a new component instance. |
||
| 18 | * Note this component requires the 'Summernote' plugin. |
||
| 19 | * TODO: the append/prepend addon slots are not supported. |
||
| 20 | * |
||
| 21 | * @return void |
||
| 22 | */ |
||
| 23 | 1 | public function __construct( |
|
| 36 | 1 | } |
|
| 37 | |||
| 38 | /** |
||
| 39 | * Get the view / contents that represent the component. |
||
| 40 | * |
||
| 41 | * @return \Illuminate\View\View|string |
||
| 42 | */ |
||
| 43 | 1 | public function render() |
|
| 48 |