Files
backend-mm/app/Http/Requests/Api/V1/Auth/AuthVerifyRequest.php
2026-07-21 21:30:27 +05:00

52 lines
1.3 KiB
PHP

<?php
namespace App\Http\Requests\Api\V1\Auth;
use App\Rules\VerificationRule;
use Illuminate\Foundation\Http\FormRequest;
class AuthVerifyRequest extends FormRequest
{
/**
* Prepare the data for validation.
*/
protected function prepareForValidation(): void
{
$this->merge([
'phone_number' => normalizeTurkmenPhoneNumber($this->phone_number),
]);
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array|string>
*/
public function rules(): array
{
return [
'phone_number' => ['required', 'integer', 'between:61000000,65999999'],
'code' => ['required', 'integer', new VerificationRule($this->phone_number)],
];
}
/**
* Body Parameters for scribe
*
* @return array<string, array<string, string>>
*/
public function bodyParameters(): array
{
return [
'phone_number' => [
'description' => 'Phone number to verify',
'example' => '61929248',
],
'code' => [
'description' => 'Code to verify',
'example' => '99934',
],
];
}
}