ok

Mini Shell

Direktori : /home2/selectio/public_html/innerstore/vendor/doctrine/dbal/src/Event/
Upload File :
Current File : /home2/selectio/public_html/innerstore/vendor/doctrine/dbal/src/Event/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;
    }
}

Zerion Mini Shell 1.0