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

25 lines
431 B
PHP
Raw Normal View History

<?php
namespace App\Http\Requests\Api\V0;
use Illuminate\Foundation\Http\FormRequest;
class UpdateModRequest 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.
*/
public function rules(): array
{
2024-09-12 13:19:52 -04:00
return [];
}
}