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