We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi
After two days of desperate attempts, I am asking for your help
I'm using Laravel 9 and to start using the package I create a simple method like this:
use VXM\Async\AsyncFacade as Async; class AsyncController extends Controller public function async() { for ($i = 1; $i < 20; $i++) { Async::run(function () use ($i) { sleep(1); return $i; }); } var_dump(implode(', ', Async::wait())); } }
the file routes/api.php contains something like:
routes/api.php
Route::get('/async', 'AsyncController@async');
Asking the GET url: http://localhost/api/location/v2/async
GET
http://localhost/api/location/v2/async
I can see only:
string(0) ""
Where am I going wrong?
Thank you.
The text was updated successfully, but these errors were encountered:
Can you retry on latest version?
Sorry, something went wrong.
Same it just didn't work
its same error #34
No branches or pull requests
Hi
After two days of desperate attempts, I am asking for your help
I'm using Laravel 9 and to start using the package I create a simple method like this:
the file
routes/api.php
contains something like:Asking the
GET
url:http://localhost/api/location/v2/async
I can see only:
Where am I going wrong?
Thank you.
The text was updated successfully, but these errors were encountered: