diff --git a/src/EventLoop/Internal/AbstractDriver.php b/src/EventLoop/Internal/AbstractDriver.php index 6fa667a..636648f 100644 --- a/src/EventLoop/Internal/AbstractDriver.php +++ b/src/EventLoop/Internal/AbstractDriver.php @@ -97,7 +97,7 @@ public function __construct() } $result = $this->fiber->isStarted() ? $this->fiber->resume() : $this->fiber->start(); - if ($result) { + if ($result) { // Null indicates the loop fiber terminated without suspending. return $result; }