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
{
//
}