MP-okui

Results 2 comments of MP-okui

`beginDatabaseTransaction()` is being called. ```php public function beginDatabaseTransaction() { $connection = $this->app->make('em')->getConnection(); $connection->beginTransaction(); Log::debug('run beginTransaction()'); $this->beforeApplicationDestroyed(function () use ($connection) { $connection->rollBack(); Log::debug('run rollBack()'); }); } ``` ```php protected function setUp():...

I solved it by running `seed()` with `refreshTestDatabase()`. Has there been an update for laravel-doctrine/orm about this problem? ```php protected function refreshTestDatabase() { if (! RefreshDatabaseState::$migrated) { $this->artisan('doctrine:schema:drop --force'); $this->artisan('doctrine:schema:create');...