暂存
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace Illuminate\Database\Events;
|
||||
|
||||
class DatabaseBusy
|
||||
{
|
||||
/**
|
||||
* Create a new event instance.
|
||||
*
|
||||
* @param string $connectionName The database connection name.
|
||||
* @param int $connections The number of open connections.
|
||||
*/
|
||||
public function __construct(
|
||||
public $connectionName,
|
||||
public $connections,
|
||||
) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user