Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
danog committed Dec 7, 2024
1 parent b0c11f7 commit d62780a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EventLoop/Internal/AbstractDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ final protected function error(\Closure $closure, \Throwable $exception): void
/** @noinspection PhpUnhandledExceptionInspection */
$yielded = $this->errorFiber->isStarted() ? $this->errorFiber->resume($exception) : $this->errorFiber->start($exception);

if ($$yielded !== $this->internalSuspensionMarker) {
if ($yielded !== $this->internalSuspensionMarker) {
$this->createErrorFiber();
}
}
Expand Down

0 comments on commit d62780a

Please sign in to comment.