CAPS04-FE-REFACTOR / app /Http /Requests /Settings /TwoFactorAuthenticationRequest.php
wepee's picture
setup: new project laravel 13 react with inertia
ec474ac
Raw
History Blame Contribute Delete
504 Bytes
<?php
namespace App\Http\Requests\Settings;
use Illuminate\Contracts\Validation\ValidationRule;
use Illuminate\Foundation\Http\FormRequest;
use Laravel\Fortify\InteractsWithTwoFactorState;
class TwoFactorAuthenticationRequest extends FormRequest
{
use InteractsWithTwoFactorState;
/**
* Get the validation rules that apply to the request.
*
* @return array<string, ValidationRule|array<mixed>|string>
*/
public function rules(): array
{
return [];
}
}