Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | public function handle() |
||
28 | { |
||
29 | $this->info('Installing PingPackage...'); |
||
30 | |||
31 | $this->info('Publishing configuration...'); |
||
32 | |||
33 | $this->call('vendor:publish', [ |
||
34 | '--provider' => PingServiceProvider::class, |
||
35 | '--tag' => 'config', |
||
36 | ]); |
||
37 | |||
38 | $this->info('Installed PingPackage'); |
||
39 | } |
||
41 |