Edit File: DispatchesCoroutines.php
<?php namespace Laravel\Octane\Contracts; interface DispatchesCoroutines { /** * Concurrently resolve the given callbacks via coroutines, returning the results. * * @param array $coroutines * @param int $waitSeconds * @return array */ public function resolve(array $coroutines, int $waitSeconds = -1): array; }
Back to File Manager