Total Complexity | 3 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class PdfOptimizerServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | public function boot(): void |
||
11 | { |
||
12 | if ($this->app->runningInConsole()) { |
||
13 | $this->publishes([__DIR__ . '/../config/config.php' => config_path('pdf-optimizer.php')], 'config'); |
||
14 | } |
||
15 | } |
||
16 | |||
17 | public function register(): void |
||
20 | } |
||
21 | } |
||
22 |