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 a064cce commit cc22152Copy full SHA for cc22152
src/vennv/vapm/CoroutineGen.php
@@ -46,7 +46,7 @@ public static function getTaskQueue(): ?SplQueue;
46
*
47
* This is a blocking function that runs all the coroutines passed to it.
48
*/
49
- public static function runBlocking(mixed ...$coroutines): void;
+ public static function runNonBlocking(mixed ...$coroutines): void;
50
51
/**
52
* @param callable $callback
@@ -89,7 +89,7 @@ public static function getTaskQueue(): ?SplQueue
89
* @return void
90
* @throws Throwable
91
92
- public static function runBlocking(mixed ...$coroutines): void
+ public static function runNonBlocking(mixed ...$coroutines): void
93
{
94
System::init();
95
if (self::$taskQueue === null) self::$taskQueue = new SplQueue();
0 commit comments