new files
This commit is contained in:
19
pro_v3.5.1/vendor/open-smf/connection-pool/src/BorrowConnectionTimeoutException.php
vendored
Normal file
19
pro_v3.5.1/vendor/open-smf/connection-pool/src/BorrowConnectionTimeoutException.php
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user