Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
47 | protected function publishFiles() |
||
48 | { |
||
49 | /** |
||
50 | * Configurations that needs to be done by user. |
||
51 | */ |
||
52 | $this->publishes([ |
||
53 | __DIR__.'/../Config/payu.php' => config_path('payu.php'), |
||
54 | ], 'config'); |
||
55 | |||
56 | /** |
||
57 | * Migration file for the payments. |
||
58 | */ |
||
59 | $this->publishes([ |
||
60 | __DIR__.'/../Migration/' => database_path('migrations') |
||
61 | ], 'migrations'); |
||
62 | } |
||
63 | |||
83 |