File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/react/promise-timer/src/TimeoutException.php
Back
<?php namespace RectorPrefix202208\React\Promise\Timer; use RuntimeException; class TimeoutException extends RuntimeException { /** @var float */ private $timeout; /** * @param float $timeout * @param string|null $message * @param int|null $code * @param null|\Exception|\Throwable $previous */ public function __construct($timeout, $message = '', $code = 0, $previous = null) { // Preserve compatibility with our former nullable signature, but avoid invalid arguments for the parent constructor: parent::__construct((string) $message, (int) $code, $previous); $this->timeout = (float) $timeout; } /** * Get the timeout value in seconds. * * @return float */ public function getTimeout() { return $this->timeout; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings