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