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

مشاهدة ملف: ConnectionEventArgs.php

<?php

namespace Doctrine\DBAL\Event;

use Doctrine\Common\EventArgs;
use Doctrine\DBAL\Connection;

/**
 * Event Arguments used when a Driver connection is established inside Doctrine\DBAL\Connection.
 *
 * @deprecated
 */
class ConnectionEventArgs extends EventArgs
{
    private Connection $connection;

    public function __construct(Connection $connection)
    {
        $this->connection = $connection;
    }

    /** @return Connection */
    public function getConnection()
    {
        return $this->connection;
    }
}