Conditions | 2 |
Paths | 2 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | public function boot() |
||
10 | { |
||
11 | $this->publishes([ |
||
12 | __DIR__.'/../config/laravel-relatable.php' => config_path('laravel-relatable.php'), |
||
13 | ], 'config'); |
||
14 | |||
15 | if (!class_exists('CreateRelatablesTable')) { |
||
16 | |||
17 | $timestamp = date('Y_m_d_His', time()); |
||
18 | |||
19 | $this->publishes([ |
||
20 | __DIR__.'/../database/migrations/create_relatables_table.php.stub' => |
||
21 | database_path('migrations/'.$timestamp.'_create_relatables_table.php'), |
||
22 | ], 'migrations'); |
||
23 | } |
||
24 | } |
||
25 | |||
31 |