Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function boot() |
||
13 | { |
||
14 | $this->publishes([ |
||
15 | __DIR__.'/../config/webmoney-merchant.php' => config_path('webmoney-merchant.php'), |
||
16 | ], 'config'); |
||
17 | |||
18 | $this->publishes([ |
||
19 | __DIR__.'/../resources/views' => base_path('resources/views/vendor/webmoney-merchant'), |
||
20 | ], 'views'); |
||
21 | |||
22 | $this->loadViewsFrom(__DIR__.'/../resources/views', 'webmoney-merchant'); |
||
23 | } |
||
24 | |||
43 |