| Total Complexity | 3 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class PhpTimeZoneServiceProvider extends ServiceProvider |
||
| 8 | { |
||
| 9 | public function boot() |
||
| 10 | { |
||
| 11 | if ($this->app->runningInConsole()) { |
||
| 12 | $this->publishes([ |
||
| 13 | __DIR__.'/./config/config.php' => $this->app->configPath('Timezone.php') |
||
| 14 | ], 'config'); |
||
| 15 | } |
||
| 16 | } |
||
| 17 | |||
| 18 | public function register() |
||
| 23 | }); |
||
| 24 | } |
||
| 26 |