Completed
Push — develop ( 22ed41...b37d35 )
by Tony
05:09
created

HtmlFormServiceProvider   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 2
c 1
b 0
f 1
lcom 0
cbo 1
dl 0
loc 17
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A boot() 0 7 1
A map() 0 4 1
1
<?php
2
3
namespace App\Providers;
4
5
use Illuminate\Routing\Router;
6
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
7
use Form;
8
9
class HtmlFormServiceProvider extends ServiceProvider
10
{
11
12
    public function boot(Router $router)
13
    {
14
        //
15
        Form::component('bsPassword', 'components.form.horiz-password', ['name', 'attributes' => [], 'class' => null, 'label_class' => null]);
16
        Form::component('bsHorizSubmit', 'components.form.horiz-submit', ['name', 'class']);
17
        parent::boot($router);
18
    }
19
20
    public function map()
21
    {
22
23
    }
24
25
}
26