master

laravel/framework

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

TransactionCommitted.php

TLDR

This file contains the TransactionCommitted class, which extends the ConnectionEvent class. It belongs to the Illuminate\Database\Events namespace.

Classes

TransactionCommitted

The TransactionCommitted class is responsible for representing the event where a transaction has been successfully committed. It extends the ConnectionEvent class.

<?php

namespace Illuminate\Database\Events;

class TransactionCommitted extends ConnectionEvent
{
    //
}