BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
laravel
/
octane
/
src
📤 Upload
📝 New File
📁 New Folder
Close
Editing: SequentialCoroutineDispatcher.php
<?php namespace Laravel\Octane; use Laravel\Octane\Contracts\DispatchesCoroutines; class SequentialCoroutineDispatcher implements DispatchesCoroutines { /** * Concurrently resolve the given callbacks via coroutines, returning the results. */ public function resolve(array $coroutines, int $waitSeconds = -1): array { return collect($coroutines)->mapWithKeys( fn ($coroutine, $key) => [$key => $coroutine()] )->all(); } }
Save
Cancel