| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 12 | public function boot() |
||
| 13 | { |
||
| 14 | $this->publishes([ |
||
| 15 | __DIR__.'/../config/commentable.php' => config_path('commentable.php'), |
||
| 16 | ], 'config'); |
||
| 17 | |||
| 18 | if (! class_exists('CreateCommentsTable')) { |
||
| 19 | $this->publishes([ |
||
| 20 | __DIR__.'/../migrations/create_comments_table.php' => database_path('migrations/'.date('Y_m_d_His', time()).'_create_comments_table.php'), |
||
| 21 | ], 'migrations'); |
||
| 22 | } |
||
| 23 | } |
||
| 24 | |||
| 33 |