Files
huangjingfen/pro_v3.5.1/vendor/open-smf/connection-pool/src/BorrowConnectionTimeoutException.php

19 lines
330 B
PHP
Raw Normal View History

2026-03-07 22:29:07 +08:00
<?php
namespace Smf\ConnectionPool;
class BorrowConnectionTimeoutException extends \Exception
{
protected $timeout;
public function getTimeout(): float
{
return $this->timeout;
}
public function setTimeout(float $timeout): self
{
$this->timeout = $timeout;
return $this;
}
}