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