reportify_mncl/app/Http/Requests/TwoFactor/EnableTwoFactorRequest.php
2024-03-16 20:37:32 +01:00

20 lines
389 B
PHP

<?php
namespace Vanguard\Http\Requests\TwoFactor;
class EnableTwoFactorRequest extends TwoFactorRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'country_code' => 'required|numeric|integer',
'phone_number' => 'required|numeric',
];
}
}