| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace Arcanesoft\Auth\Console; |
||
| 41 | public function handle() |
||
| 42 | { |
||
| 43 | $this->call('vendor:publish', [ |
||
| 44 | '--provider' => LaravelAuthServiceProvider::class, |
||
| 45 | '--tag' => ['migrations', 'factories'], |
||
| 46 | ]); |
||
| 47 | |||
| 48 | $this->call('vendor:publish', [ |
||
| 49 | '--provider' => AuthServiceProvider::class, |
||
| 50 | ]); |
||
| 51 | } |
||
| 52 | } |
||
| 53 |