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

HtmlFormServiceProvider::map()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
rs 10
cc 1
eloc 1
nc 1
nop 0
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