mirror of
https://github.com/danog/postgres.git
synced 2024-11-26 20:15:02 +01:00
Fix default Pool constructor parameters
This commit is contained in:
parent
4e2ca37608
commit
964ec8759b
@ -34,8 +34,8 @@ final class Pool extends AbstractPool implements Link
|
||||
*/
|
||||
public function __construct(
|
||||
ConnectionConfig $config,
|
||||
int $maxConnections = SqlPool::DEFAULT_MAX_CONNECTIONS,
|
||||
int $idleTimeout = SqlPool::DEFAULT_IDLE_TIMEOUT,
|
||||
int $maxConnections = self::DEFAULT_MAX_CONNECTIONS,
|
||||
int $idleTimeout = self::DEFAULT_IDLE_TIMEOUT,
|
||||
bool $resetConnections = true,
|
||||
Connector $connector = null
|
||||
) {
|
||||
|
Loading…
Reference in New Issue
Block a user