Support the ongoing development of Laravel.io →
Database Eloquent Testing
Last updated 1 year ago.
0

Just in case anyone has the same question, this function is using 'Notations', and is called because his @before on comments.

Here is the source code:

trait DatabaseTransactions
{
    /**
     * @before
     */
    public function beginDatabaseTransaction()
    {
        $this->app->make('db')->beginTransaction();

        $this->beforeApplicationDestroyed(function () {
            $this->app->make('db')->rollBack();
        });
    }
}
0

Sign in to participate in this thread!

Eventy

Your banner here too?

jatubio jatubio Joined 22 May 2015

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.