fuc-new/vendor/illuminate/database/Events/DatabaseBusy.php
hellcat 1fe8673f62 1
2025-10-01 13:34:29 +08:00

33 lines
579 B
PHP
Executable File

<?php
namespace Illuminate\Database\Events;
class DatabaseBusy
{
/**
* The database connection name.
*
* @var string
*/
public $connectionName;
/**
* The number of open connections.
*
* @var int
*/
public $connections;
/**
* Create a new event instance.
*
* @param string $connectionName
* @param int $connections
*/
public function __construct($connectionName, $connections)
{
$this->connectionName = $connectionName;
$this->connections = $connections;
}
}