Файл vendor/doctrine/dbal/src/Event/ConnectionEventArgs.php Вес запакованого файла 242b (242 b) Вес распакованого файла: 531b (531 b) Метод сжатия: 8
<?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;
}
}