43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\V1\Auth;
|
|
|
|
use App\Rules\VerificationRule;
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class AuthVerifyRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, 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',
|
|
],
|
|
];
|
|
}
|
|
}
|