I added (int) to the configuration in the parameters, where we get the numbers through the env function.

This commit is contained in:
Leonid Nikitin 2023-12-09 00:54:12 +06:00
parent e72dc03589
commit a5ba9eb3f8
Signed by: kor-elf
GPG Key ID: 604A019EB118CAC4
2 changed files with 6 additions and 6 deletions

View File

@ -1,10 +1,10 @@
<?php <?php
return [ return [
'waiting_for_captcha_verification_in_seconds' => env('WAITING_FOR_CAPTCHA_VERIFICATION_IN_SECONDS', 900), 'waiting_for_captcha_verification_in_seconds' => (int) env('WAITING_FOR_CAPTCHA_VERIFICATION_IN_SECONDS', 900),
'validate_max_count_errors' => env('CAPTCHA_VALIDATE_MAX_COUNT_ERRORS', 3), 'validate_max_count_errors' => (int) env('CAPTCHA_VALIDATE_MAX_COUNT_ERRORS', 3),
'max_info_display_count' => env('CAPTCHA_MAX_INFO_DISPLAY_COUNT', 1), 'max_info_display_count' => (int) env('CAPTCHA_MAX_INFO_DISPLAY_COUNT', 1),
'verification_data_view_limit_in_minutes' => env('CAPTCHA_VERIFICATION_DATA_VIEW_LIMIT_IN_MINUTES', 60), 'verification_data_view_limit_in_minutes' => (int) env('CAPTCHA_VERIFICATION_DATA_VIEW_LIMIT_IN_MINUTES', 60),
'imageClass' => \App\Captcha\Images\Image::class, 'imageClass' => \App\Captcha\Images\Image::class,
'types' => [ 'types' => [
'string' => [ 'string' => [

View File

@ -3,6 +3,6 @@ return [
/** /**
* Max limit of the hour. * Max limit of the hour.
*/ */
'login_max_request' => env('LOGIN_MAX_REQUEST', 50), 'login_max_request' => (int) env('LOGIN_MAX_REQUEST', 50),
'login_max_email_request' => env('LOGIN_MAX_EMAIL_REQUEST', 10), 'login_max_email_request' => (int) env('LOGIN_MAX_EMAIL_REQUEST', 10),
]; ];