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 d15a227 commit d4e5e73Copy full SHA for d4e5e73
src/Analyser/Fiber/FiberNodeScopeResolver.php
@@ -80,8 +80,6 @@ private function runFiberForNodeCallback(
80
81
protected function processPendingFibers(ExpressionResultStorage $storage): void
82
{
83
- start:
84
-
85
foreach ($storage->pendingFibers as $pending) {
86
$request = $pending['request'];
87
$beforeScope = $storage->findBeforeScope($request->expr);
@@ -103,7 +101,7 @@ protected function processPendingFibers(ExpressionResultStorage $storage): void
103
101
}
104
102
105
// Break and restart the loop since the array may have been modified
106
- goto start;
+ return;
107
108
109
0 commit comments