You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
today, I've tried re-running artisan make:filament-user today and noticed that every time artisan command fails, it adds a umask(18);function on top of the artisan binary file, like so:
Before:
<?phpdefine('LARAVEL_START', microtime(true));
/*|--------------------------------------------------------------------------| Register The Auto Loader|--------------------------------------------------------------------------|| Composer provides a convenient, automatically generated class loader| for our application. We just need to utilize it! We'll require it| into the script here so that we do not have to worry about the| loading of any of our classes manually. It's great to relax.|*/require__DIR__.'/vendor/autoload.php';
$app = require_once__DIR__.'/bootstrap/app.php';
After:
<?phpumask(18);
define('LARAVEL_START', microtime(true));
/*|--------------------------------------------------------------------------| Register The Auto Loader|--------------------------------------------------------------------------|| Composer provides a convenient, automatically generated class loader| for our application. We just need to utilize it! We'll require it| into the script here so that we do not have to worry about the| loading of any of our classes manually. It's great to relax.|*/require__DIR__.'/vendor/autoload.php';
$app = require_once__DIR__.'/bootstrap/app.php';
Hope this helps in solving the issues described in Issue #2.
Kind regards,
g
The text was updated successfully, but these errors were encountered:
Hey @aschmelyun,
today, I've tried re-running artisan make:filament-user today and noticed that every time artisan command fails, it adds a
umask(18);
function on top of the artisan binary file, like so:Before:
After:
Hope this helps in solving the issues described in Issue #2.
Kind regards,
g
The text was updated successfully, but these errors were encountered: