File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Contracts/Concurrency
Upload
[..]
Driver.php (487 B)
Edit
Rename
Del
Edit: Driver.php
<?php namespace Illuminate\Contracts\Concurrency; use Carbon\CarbonInterval; use Closure; use Illuminate\Support\Defer\DeferredCallback; interface Driver { /** * Run the given tasks concurrently and return an array containing the results. */ public function run(Closure|array $tasks, CarbonInterval|int|null $timeout = null): array; /** * Defer the execution of the given tasks. */ public function defer(Closure|array $tasks): DeferredCallback; }
Simpan