Page MenuHomeWickedGov Phorge

TransactionEventArgs.php
No OneTemporary

Size
445 B
Referenced Files
None
Subscribers
None

TransactionEventArgs.php

<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Event;
use Doctrine\Common\EventArgs;
use Doctrine\DBAL\Connection;
/** @deprecated */
abstract class TransactionEventArgs extends EventArgs
{
private Connection $connection;
public function __construct(Connection $connection)
{
$this->connection = $connection;
}
public function getConnection(): Connection
{
return $this->connection;
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Aug 19, 15:13 (3 w, 5 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
5d/e2/71605038f521ba9655a963ff4f90
Default Alt Text
TransactionEventArgs.php (445 B)

Event Timeline