PHP code example of lukaszaleckas / laravel-concurrency
1. Go to this page and download the library: Download lukaszaleckas/laravel-concurrency library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
lukaszaleckas / laravel-concurrency example snippets
use LaravelConcurrency\Contracts\TaskInterface;
class SleepForTwoSeconds implements TaskInterface
{
public function run(): mixed
{
sleep(2);
return null;
}
}
use LaravelConcurrency\Facades\Concurrency;
Concurrency::wait(
new SleepForTwoSeconds(),
new SleepForTwoSeconds()
)