Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class HelperServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Register services. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function register() |
||
15 | { |
||
16 | $this->app->bind('helper', function () { |
||
17 | return new Helper(); |
||
18 | }); |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * Bootstrap services. |
||
23 | * |
||
24 | * @return void |
||
25 | */ |
||
26 | public function boot() |
||
28 | // |
||
29 | } |
||
31 |