master

laravel/framework

Last updated at: 29/12/2023 09:22

TransactionBeginning.php

TLDR

This file contains the TransactionBeginning class, which is a subclass of the ConnectionEvent class in the Illuminate\Database\Events namespace.

Classes

TransactionBeginning

The TransactionBeginning class extends the ConnectionEvent class. It represents an event that is fired when a database transaction is beginning. This class does not contain any additional methods or properties.

<?php

namespace Illuminate\Database\Events;

class TransactionBeginning extends ConnectionEvent
{
    //
}