Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | public function boot() |
||
10 | { |
||
11 | // Publish migration file (if not already published) |
||
12 | if (! class_exists('CreateAddressTable')) { |
||
13 | $this->publishes([ |
||
14 | __DIR__.'/../database/migrations/create_address_table.php.stub' => database_path( |
||
15 | 'migrations/'.date('Y_m_d_His', time()).'_create_address_table.php' |
||
16 | ), |
||
17 | ], 'migration'); |
||
18 | } |
||
21 |