| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class LaravelTestMailServiceProvider extends ServiceProvider |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Bootstrap the application services. |
||
| 12 | */ |
||
| 13 | 16 | public function boot() |
|
| 14 | { |
||
| 15 | 16 | $this->loadViewsFrom(__DIR__.'/../resources/views', 'laravel-test-mail'); |
|
| 16 | |||
| 17 | 16 | $this->publishes([ |
|
| 18 | 16 | __DIR__.'/../config/mail-test.php' => config_path('mail-test.php'), |
|
| 19 | 16 | ], 'config'); |
|
| 20 | |||
| 21 | 16 | } |
|
| 22 | |||
| 23 | /** |
||
| 24 | * Register the application services. |
||
| 25 | */ |
||
| 26 | 16 | public function register() |
|
| 32 | ]); |
||
| 33 | 16 | } |
|
| 35 |