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
13.0
12.12
8.4.5
NA
Fresh installation of Laravel + Passport.
Run: php artisan passport:keys. Results in error:
php artisan passport:keys
Error Typed static property Laravel\Passport\Passport::$keyPath must not be accessed before initialization at vendor/laravel/passport/src/Passport.php:407 403▕ public static function keyPath(string $file): string 404▕ { 405▕ $file = ltrim($file, '/\\'); 406▕ ➜ 407▕ return static::$keyPath 408▕ ? rtrim(static::$keyPath, '/\\').DIRECTORY_SEPARATOR.$file 409▕ : storage_path($file); 410▕ } 411▕ +14 vendor frames 15 artisan:16 Illuminate\Foundation\Application::handleCommand()
composer create-project "laravel/laravel:^12.0" example-app cd example-app/ composer require laravel/passport php artisan passport:keys php -v history
The text was updated successfully, but these errors were encountered:
Fixed via #1811
Sorry, something went wrong.
Nice. Is it now a matter of waiting for a new release?
Any idea when this will be released?
alias the dev branch until it is released #1811 (comment)
This was released in v13.0.1 👍🏻
No branches or pull requests
Passport Version
13.0
Laravel Version
12.12
PHP Version
8.4.5
Database Driver & Version
NA
Description
Fresh installation of Laravel + Passport.
Run:
php artisan passport:keys
. Results in error:Steps To Reproduce
The text was updated successfully, but these errors were encountered: