master

laravel/framework

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

TransactionCommitting.php

TLDR

This file contains the TransactionCommitting class, which extends the ConnectionEvent class in the Illuminate\Database\Events namespace.

Classes

TransactionCommitting

The TransactionCommitting class is a subclass of ConnectionEvent and is used to represent the event of a transaction committing in the database. It does not include any additional functionality or properties.

<?php

namespace Illuminate\Database\Events;

class TransactionCommitting extends ConnectionEvent
{
    //
}