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
11
8.3
No response
I Install laravel latest version 11
Start artisan serve then display error
Undefined constant "Illuminate\Foundation\Console\SIGINT"
vendor\laravel\framework\src\Illuminate\Foundation\Console\ServeCommand.php
$this->trap([SIGTERM, SIGINT, SIGHUP, SIGUSR1, SIGUSR2, SIGQUIT], function ($signal) use ($process) { if ($process->isRunning()) { $process->stop(10, $signal); } exit; });
I also find solution for that File path vendor\laravel\framework\src\Illuminate\Foundation\Console\ServeCommand.php
I commit this trap code
Now its working perfect
The text was updated successfully, but these errors were encountered:
Duplicate of #50022
Sorry, something went wrong.
No branches or pull requests
Laravel Version
11
PHP Version
8.3
Database Driver & Version
No response
Description
I Install laravel latest version 11
Start artisan serve then display error
vendor\laravel\framework\src\Illuminate\Foundation\Console\ServeCommand.php
$this->trap([SIGTERM, SIGINT, SIGHUP, SIGUSR1, SIGUSR2, SIGQUIT], function ($signal) use ($process) {
if ($process->isRunning()) {
$process->stop(10, $signal);
}
exit;
});
Steps To Reproduce
I also find solution for that
File path
vendor\laravel\framework\src\Illuminate\Foundation\Console\ServeCommand.php
I commit this trap code
$this->trap([SIGTERM, SIGINT, SIGHUP, SIGUSR1, SIGUSR2, SIGQUIT], function ($signal) use ($process) {
if ($process->isRunning()) {
$process->stop(10, $signal);
}
exit;
});
Now its working perfect
The text was updated successfully, but these errors were encountered: