Passed
Push — main ( 0df0a9...75c885 )
by PRATIK
03:04 queued 15s
created

NepalidateServiceProvider::loadHelpers()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 2
c 0
b 0
f 0
nc 2
nop 0
dl 0
loc 4
rs 10
1
<?php
2
3
namespace Pratiksh\Nepalidate\Providers;
4
5
use Illuminate\Support\ServiceProvider;
6
7
class NepalidateServiceProvider extends ServiceProvider
8
{
9
    /**
10
     * Bootstrap Resources.
11
     *
12
     * @return void
13
     */
14
    public function boot()
15
    {
16
        // 
17
    }
18
19
    /**
20
     * Register the application services.
21
     */
22
    public function register()
23
    {
24
        //
25
    }
26
}
27