Вход Регистрация
Файл: vendor/laravel/framework/src/Illuminate/Foundation/Testing/DatabaseMigrations.php
Строк: 61
<?php

namespace IlluminateFoundationTesting;

use 
IlluminateContractsConsoleKernel;
use 
IlluminateFoundationTestingTraitsCanConfigureMigrationCommands;

trait 
DatabaseMigrations
{
    use 
CanConfigureMigrationCommands;

    
/**
     * Define hooks to migrate the database before and after each test.
     *
     * @return void
     */
    
public function runDatabaseMigrations()
    {
        
$this->beforeRefreshingDatabase();
        
$this->refreshTestDatabase();
        
$this->afterRefreshingDatabase();

        
$this->beforeApplicationDestroyed(function () {
            
$this->artisan('migrate:rollback');

            
RefreshDatabaseState::$migrated false;
        });
    }

    
/**
     * Refresh a conventional test database.
     *
     * @return void
     */
    
protected function refreshTestDatabase()
    {
        
$this->artisan('migrate:fresh'$this->migrateFreshUsing());

        
$this->app[Kernel::class]->setArtisan(null);
    }

    
/**
     * Perform any work that should take place before the database has started refreshing.
     *
     * @return void
     */
    
protected function beforeRefreshingDatabase()
    {
        
// ...
    
}

    
/**
     * Perform any work that should take place once the database has finished refreshing.
     *
     * @return void
     */
    
protected function afterRefreshingDatabase()
    {
        
// ...
    
}
}
Онлайн: 1
Реклама