We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08793c8 commit 856a930Copy full SHA for 856a930
1 file changed
lib/Loop.php
@@ -67,12 +67,12 @@ protected function reportPause(float $timeout): void
67
*/
68
public function start(): bool
69
{
70
- if ($this->running) {
71
- return false;
72
- }
73
if ($this->shutdownDeferred) {
74
$this->shutdownDeferred->getFuture()->await();
75
}
+ if ($this->running) {
+ return false;
+ }
76
$this->running = true;
77
if (!$this->resume()) {
78
// @codeCoverageIgnoreStart
0 commit comments