Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
57 | protected function setupMigrations() |
||
58 | { |
||
59 | $timestamp = date('Y_m_d_His'); |
||
60 | $migrationsSource = realpath(__DIR__.'/../database/migrations/create_followables_table.php'); |
||
61 | $migrationsTarget = database_path("/migrations/{$timestamp}_create_followables_table.php"); |
||
62 | $this->publishes([ |
||
63 | $migrationsSource => $migrationsTarget, |
||
64 | ], 'migrations'); |
||
65 | } |
||
66 | } |
||
67 |