/home/techb158/ileadtechnology.com/vendor/guzzlehttp/promises/src
NameSizeModeActions
AggregateException.php3800644editdlrm
CancellationException.php1830644editdlrm
Coroutine.php43460644editdlrm
Create.php21120644editdlrm
Each.php28900644editdlrm
EachPromise.php77810644editdlrm
FulfilledPromise.php19910644editdlrm
functions.php101280644editdlrm
functions_include.php1670644editdlrm
Is.php9990644editdlrm
Promise.php89440644editdlrm
PromiseInterface.php28520644editdlrm
PromisorInterface.php2440644editdlrm
RejectedPromise.php22840644editdlrm
RejectionException.php12180644editdlrm
TaskQueue.php19400644editdlrm
TaskQueueInterface.php4330644editdlrm
Utils.php87100644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/guzzlehttp/promises/src/RejectionException.php (1218B)
reason = $reason; $message = 'The promise was rejected'; if ($description) { $message .= ' with reason: ' . $description; } elseif (is_string($reason) || (is_object($reason) && method_exists($reason, '__toString')) ) { $message .= ' with reason: ' . $this->reason; } elseif ($reason instanceof \JsonSerializable) { $message .= ' with reason: ' . json_encode($this->reason, JSON_PRETTY_PRINT); } parent::__construct($message); } /** * Returns the rejection reason. * * @return mixed */ public function getReason() { return $this->reason; } }