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
When authenticating users via bearer tokens, the `User` model's `token` method now returns an instance of `Laravel\Passport\AccessToken` class instead of `Laravel\Passport\Token`.
66
66
67
+
### Renamed Middlewares
68
+
69
+
PR: https://github.com/laravel/passport/pull/1792
70
+
71
+
Passport's `CheckClientCredentials` and `CheckClientCredentialsForAnyScope` middleware have been renamed to better reflect their functionality:
72
+
73
+
*`Laravel\Passport\Http\Middleware\CheckClientCredentials` class has been renamed to `CheckToken`.
74
+
*`Laravel\Passport\Http\Middleware\CheckClientCredentialsForAnyScope` class has been renamed to `CheckTokenForAnyScope`.
75
+
*`Laravel\Passport\Http\Middleware\CheckCredentials` abstract class has been renamed to `ValidateToken`.
76
+
67
77
### Personal Access Client Table and Model Removal
0 commit comments