value = $value; } /** * {@inheritdoc} */ public function when(callable $onResolved) { try { $onResolved(null, $this->value); } catch (\Throwable $exception) { Loop::defer(static function ($watcher, $exception) { throw $exception; }, $exception); } catch (\Exception $exception) { Loop::defer(static function ($watcher, $exception) { throw $exception; }, $exception); } } }