| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public function boot(): void |
||
| 11 | { |
||
| 12 | $this->publishes([ |
||
| 13 | __DIR__.'/../config/config.php' => config_path('laravel-urls-shortener.php'), |
||
| 14 | ]); |
||
| 15 | |||
| 16 | if (! class_exists('CreateShortUrlsTable')) { |
||
| 17 | $this->publishes([ |
||
| 18 | __DIR__.'/../database/migrations/create_short_urls_table.php.stub' => database_path('migrations/'.date('Y_m_d_His', time()).'_create_short_urls_table.php'), |
||
| 19 | ]); |
||
| 20 | } |
||
| 21 | } |
||
| 22 | |||
| 46 |