| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | 87 | public function boot() |
|
| 12 | { |
||
| 13 | 87 | Form::component('bsPassword', 'components.form.horiz-password', ['name', 'attributes' => []]); |
|
| 14 | 87 | Form::component('bsSelect', 'components.form.horiz-select', ['name', 'values' => [], 'selected' => null, 'attributes' => []]); |
|
| 15 | 87 | Form::component('bsSubmit', 'components.form.horiz-submit', ['name', 'attributes' => []]); |
|
| 16 | 87 | Form::component('bsText', 'components.form.horiz-text', ['name', 'value', 'attributes' => []]); |
|
| 17 | |||
| 18 | 87 | Form::component('ajaxDynamicText', 'components.form.ajax-dynamic-text', ['name', 'values' => [], 'attributes' => []]); |
|
| 19 | 87 | Form::component('ajaxRadio', 'components.form.ajax-radio', ['setting', 'label'=>null, 'items' => []]); |
|
| 20 | 87 | Form::component('ajaxSortable', 'components.form.ajax-sortable', ['setting', 'label'=>null, 'default' => []]); |
|
| 21 | |||
| 22 | 87 | parent::boot(); |
|
| 23 | 87 | } |
|
| 24 | |||
| 29 |