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