How does php artisan run commands and work internally?
What happens when a command via \Illuminate\Support\Facades\Artisan::call() is called? Is it the same as php -q filename.php or does it use the exec function?
I tried to look at the source code, but the artisan class turned out to be a facade and my editor can't find the file.