TransactionRolledBack.php
TLDR
This file defines the TransactionRolledBack
class, which extends the ConnectionEvent
class, in the Illuminate\Database\Events
namespace.
Classes
TransactionRolledBack
The TransactionRolledBack
class extends the ConnectionEvent
class and represents an event that is fired when a transaction is rolled back. It does not contain any additional methods or properties.
<?php
namespace Illuminate\Database\Events;
class TransactionRolledBack extends ConnectionEvent
{
//
}