Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function boot() |
||
14 | { |
||
15 | $this->publishes([ |
||
16 | __DIR__.'/../config/rateable.php' => config_path('rateable.php'), |
||
17 | ], 'config'); |
||
18 | |||
19 | if (! class_exists('CreateRatingsTable')) { |
||
20 | $this->publishes([ |
||
21 | __DIR__.'/../migrations/create_ratings_table.php' => database_path('migrations/'.date('Y_m_d_His', time()).'_create_ratings_table.php'), |
||
22 | ], 'migrations'); |
||
23 | } |
||
24 | } |
||
25 | |||
38 |