Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | 22 | public function boot() |
|
12 | { |
||
13 | 22 | if ($this->app->runningInConsole()) { |
|
14 | 22 | $this->publishes([ |
|
15 | 22 | __DIR__ . '/../config/email-change-verification.php' => config_path('email-change-verification.php'), |
|
16 | 22 | ], 'config'); |
|
17 | |||
18 | |||
19 | 22 | $this->commands([ |
|
20 | 22 | ClearEmailChangesCommand::class, |
|
21 | 22 | ]); |
|
63 |