File manager - Edit - /home/autoph/public_html/projects/vendor/laravel/framework/src/Illuminate/Foundation/Testing/LazilyRefreshDatabase.php
Back
<?php namespace Illuminate\Foundation\Testing; trait LazilyRefreshDatabase { use RefreshDatabase { refreshDatabase as baseRefreshDatabase; } /** * Define hooks to migrate the database before and after each test. * * @return void */ public function refreshDatabase() { $database = $this->app->make('db'); $callback = function () { if (RefreshDatabaseState::$lazilyRefreshed) { return; } RefreshDatabaseState::$lazilyRefreshed = true; if (property_exists($this, 'mockConsoleOutput')) { $shouldMockOutput = $this->mockConsoleOutput; $this->mockConsoleOutput = false; } $this->baseRefreshDatabase(); if (property_exists($this, 'mockConsoleOutput')) { $this->mockConsoleOutput = $shouldMockOutput; } }; $database->beforeStartingTransaction($callback); $database->beforeExecuting($callback); $this->beforeApplicationDestroyed(function () { RefreshDatabaseState::$lazilyRefreshed = false; }); } }
| ver. 1.4 |
.
| PHP 8.1.32 | Generation time: 0.07 |
proxy
|
phpinfo
|
Settings