forge/app/Http/Requests/Api/V0/UpdateUserRequest.php

27 lines
475 B
PHP

<?php
namespace App\Http\Requests\Api\V0;
use Illuminate\Foundation\Http\FormRequest;
class UpdateUserRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return false;
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, mixed>
*/
public function rules(): array
{
return [];
}
}