Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function boot() |
||
17 | { |
||
18 | if ($this->app->runningInConsole()) { |
||
19 | $this->publishes([ |
||
20 | __DIR__ . '/../config/config.php' => config_path('user-commands.php'), |
||
21 | ], 'config'); |
||
22 | |||
23 | $this->commands([ |
||
24 | CreateNewUserCommand::class, |
||
25 | ResetUserPasswordCommand::class, |
||
26 | DeleteUserCommand::class, |
||
27 | RestoreUserCommand::class, |
||
28 | ]); |
||
41 |