Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/amphp/parallel/lib/Sync/ExitFailure.php
Назад
<?php namespace Amp\Parallel\Sync; final class ExitFailure implements ExitResult { /** @var string */ private $type; /** @var string */ private $message; /** @var int|string */ private $code; /** @var string[] */ private $trace; /** @var self|null */ private $previous; public function __construct(\Throwable $exception) { $this->type = \get_class($exception); $this->message = $exception->getMessage(); $this->code = $exception->getCode(); $this->trace = flattenThrowableBacktrace($exception); if ($previous = $exception->getPrevious()) { $this->previous = new self($previous); } } /** * {@inheritdoc} */ public function getResult() { throw $this->createException(); } private function createException(): ContextPanicError { $previous = $this->previous ? $this->previous->createException() : null; return new ContextPanicError($this->type, $this->message, $this->code, $this->trace, $previous); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка