Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/vendor/voku/.././doctrine/dbal/src/Event
الملفات الموجودة في هذا الـ Path:
.
..
ConnectionEventArgs.php
Listeners
SchemaAlterTableAddColumnEventArgs.php
SchemaAlterTableChangeColumnEventArgs.php
SchemaAlterTableEventArgs.php
SchemaAlterTableRemoveColumnEventArgs.php
SchemaAlterTableRenameColumnEventArgs.php
SchemaColumnDefinitionEventArgs.php
SchemaCreateTableColumnEventArgs.php
SchemaCreateTableEventArgs.php
SchemaDropTableEventArgs.php
SchemaEventArgs.php
SchemaIndexDefinitionEventArgs.php
TransactionBeginEventArgs.php
TransactionCommitEventArgs.php
TransactionEventArgs.php
TransactionRollBackEventArgs.php

مشاهدة ملف: 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;
    }
}