diff --git a/src/config/config.php b/src/config/config.php index ef23e829..66a1a5f4 100644 --- a/src/config/config.php +++ b/src/config/config.php @@ -45,11 +45,13 @@ |-------------------------------------------------------------------------- | persist_user (Boolean) Optional. Indicates if you want to persist the user info, default true | persist_access_token (Boolean) Optional. Indicates if you want to persist the access token, default false + | persist_refresh_token (Boolean) Optional. Indicates if you want to persist the refresh token, default false | persist_id_token (Boolean) Optional. Indicates if you want to persist the id token, default false | */ 'persist_user' => true, 'persist_access_token' => false, + 'persist_refresh_token' => false, 'persist_id_token' => false, /* @@ -95,4 +97,4 @@ | */ // 'guzzle_options' => [] -]; \ No newline at end of file +];