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
// Retrieve the token length from the configuration
22
-
$tokenLength = is_numeric(Config::get('laravel-token-auth.token_length')) ? (int) Config::get('laravel-token-auth.token_length') : 60; // Default to 60 if not set
22
+
$tokenLength = is_numeric(Config::get('token-auth.token_length')) ? (int) Config::get('token-auth.token_length') : 60; // Default to 60 if not set
0 commit comments